Difference between revisions of "Education Project/Effort/Fixing warning"

From Apache OpenOffice Wiki
Jump to: navigation, search
Line 96: Line 96:
 
warning: enumerator value 'xxxx' not handled in switch
 
warning: enumerator value 'xxxx' not handled in switch
  
binfilter/bf_sw/source/core/docnode/sw_node.cxx
+
1. binfilter/bf_sw/source/core/docnode/sw_node.cxx
binfilter/bf_sw/source/core/docnode/sw_section.cxx
+
2. binfilter/bf_sw/source/core/docnode/sw_section.cxx
  
 
Patch for 7th: [http://rakesh.gnulinuxcentar.org/switch_case_enum_warnings6.diff switch_case_enum_warnings6.diff]
 
Patch for 7th: [http://rakesh.gnulinuxcentar.org/switch_case_enum_warnings6.diff switch_case_enum_warnings6.diff]
Line 108: Line 108:
  
 
Patch for 8th: [http://rakesh.gnulinuxcentar.org/switch_case_enum_warnings7.diff switch_case_enum_warnings7.diff]
 
Patch for 8th: [http://rakesh.gnulinuxcentar.org/switch_case_enum_warnings7.diff switch_case_enum_warnings7.diff]
 +
 
Files Modified:
 
Files Modified:
  
Line 155: Line 156:
 
warning: enumerator value 'xxxx' not handled in switch
 
warning: enumerator value 'xxxx' not handled in switch
  
binfilter/bf_sw/source/core/unocore/sw_unocoll.cxx DONE patch 13
+
1. binfilter/bf_sw/source/core/unocore/sw_unocoll.cxx
binfilter/bf_sw/source/core/unocore/sw_unoframe.cxx
+
2. binfilter/bf_sw/source/core/unocore/sw_unoframe.cxx
binfilter/bf_sw/source/core/unocore/sw_unoidx.cxx
+
3. binfilter/bf_sw/source/core/unocore/sw_unoidx.cxx
binfilter/bf_sw/source/core/unocore/sw_unoobj.cxx
+
4. binfilter/bf_sw/source/core/unocore/sw_unoobj.cxx
binfilter/bf_sw/source/core/unocore/sw_unostyle.cxx
+
5. binfilter/bf_sw/source/core/unocore/sw_unostyle.cxx
binfilter/bf_sw/source/core/unocore/sw_unotext.cxx
+
6. binfilter/bf_sw/source/core/unocore/sw_unotext.cxx
  
 
Patch for 14th: [http://rakesh.gnulinuxcentar.org/switch_case_enum_warnings13.diff switch_case_enum_warnings13.diff]
 
Patch for 14th: [http://rakesh.gnulinuxcentar.org/switch_case_enum_warnings13.diff switch_case_enum_warnings13.diff]
Line 168: Line 169:
 
warning: enumerator value 'xxxx' not handled in switch
 
warning: enumerator value 'xxxx' not handled in switch
  
binfilter/bf_sw/source/filter/xml/sw_xmltexte.cxx
+
1. binfilter/bf_sw/source/filter/xml/sw_xmltexte.cxx
binfilter/bf_sw/source/filter/xml/sw_xmltbli.cxx
+
2. binfilter/bf_sw/source/filter/xml/sw_xmltbli.cxx
binfilter/bf_sw/source/filter/xml/sw_xmlexpit.cxx
+
3. binfilter/bf_sw/source/filter/xml/sw_xmlexpit.cxx
  
 
Patch for 15th: [http://rakesh.gnulinuxcentar.org/switch_case_enum_warnings14.diff switch_case_enum_warnings14.diff]
 
Patch for 15th: [http://rakesh.gnulinuxcentar.org/switch_case_enum_warnings14.diff switch_case_enum_warnings14.diff]

Revision as of 21:10, 8 June 2008

Modules and respective files which are currently being debugged.

Please put in dates when entered and expected time in which you will release lock, so that in case someone forgets other can contribute on that part, in short avoid deadlocks This page is just for collaboration. Mark done one changed

So the format should be

    <user>
    <Modules>
           <file1>, <file2>, <file3>...etc
    <date>


1. RakeshPandit (rakesh.pandit@gmail.com) binfilter

      ../../../inc/bf_sc/source/code/data/  Folder: sc_column2.cxx, sc_column3.cxx, sc_documen4.cxx, sc_table3.cxx, sc_dociter.cxx

7th Jun Note: Fixing enumerator value not handled in switch error.

DONE

2. RakeshPandit (rakesh.pandit@gmail.com) binfilter

      ../../../inc/bf_sc/source/code/tool/ Folder: sc_compiler.cxx, sc_interpr1.cxx, sc_addincol.cxx

8th Jun Note: Fixing enumerator value not handled in switch error.

DONE

Patch

Need review.

Files modified:

Handling: 'warning: enumerator value 'xxxx' not handled in switch'

1. binfilter/bf_sc/source/core/data/sc_column2.cxx 
2. binfilter/bf_sc/source/core/data/sc_column3.cxx
3. binfilter/bf_sc/source/core/data/sc_documen4.cxx
4. binfilter/bf_sc/source/core/data/sc_table3.cxx
5. binfilter/bf_sc/source/core/data/sc_table5.cxx
6. binfilter/bf_sc/source/core/data/sc_dociter.cxx

Patch for 1st: switch_case_enum_warnings.diff

Files modified:

Handling: 'warning: enumerator value 'xxxx' not handled in switch'

1. binfilter/bf_sc/source/core/tool/sc_compiler.cxx
2. binfilter/bf_sc/source/core/tool/sc_interpr1.cxx
3. binfilter/bf_sc/source/core/tool/sc_addincol.cxx

Patch for 2nd: switch_case_enum_warnings1.diff

Files modified:

warning: enumerator value 'xxxx' not handled in switch

1. binfilter/bf_sc/source/filter/xml/sc_xmlexprt.cxx
2. binfilter/bf_sc/source/filter/xml/sc_xmlstyle.cxx
3. binfilter/bf_sc/source/filter/xml/sc_XMLStylesExportHelper.cxx
4. binfilter/bf_sc/source/filter/xml/sc_XMLExportDatabaseRanges.cxx
5. binfilter/bf_sc/source/filter/xml/sc_XMLChangeTrackingExportHelper.cxx
6. binfilter/bf_sc/source/filter/xml/sc_XMLChangeTrackingImportHelper.cxx

Patch for 3rd: switch_case_enum_warnings2.diff

Files Modified:

warning: enumerator value 'xxxx' not handled in switch

1. binfilter/bf_sc/source/ui/unoobj/sc_cellsuno.cxx

Patch for 4th: switch_case_enum_warnings3.diff

Files Modified:

warning: enumerator value 'xxxx' not handled in switch

1. binfilter/bf_starmath/source/starmath_parse.cxx

Patch for 5th: switch_case_enum_warnings4.diff

Files Modified:

warning: enumerator value 'xxxx' not handled in switch

1. binfilter/bf_sw/source/core/doc/sw_docfld.cxx
2. binfilter/bf_sw/source/core/doc/sw_docfly.cxx

Patch for 6th: switch_case_enum_warnings5.diff

Files Modified:

warning: enumerator value 'xxxx' not handled in switch

1. binfilter/bf_sw/source/core/docnode/sw_node.cxx
2. binfilter/bf_sw/source/core/docnode/sw_section.cxx

Patch for 7th: switch_case_enum_warnings6.diff

Files Modified:

warning: enumerator value 'xxxx' not handled in switch

1. binfilter/bf_sw/source/core/draw/sw_dcontact.cxx

Patch for 8th: switch_case_enum_warnings7.diff

Files Modified:

warning: enumerator value 'xxxx' not handled in switch

1. binfilter/bf_sw/source/core/frmedt/sw_fews.cxx

Patch for 9th: switch_case_enum_warnings8.diff

Files Modified:

warning: enumerator value 'xxxx' not handled in switch

1. binfilter/bf_sw/source/core/layout/sw_atrfrm.cxx 
2. binfilter/bf_sw/source/core/layout/sw_flowfrm.cxx
3. binfilter/bf_sw/source/core/layout/sw_pagechg.cxx
4. binfilter/bf_sw/source/core/layout/sw_tabfrm.cxx

Patch for 10th: switch_case_enum_warnings9.diff

Files Modified:

warning: enumerator value 'xxxx' not handled in switch

1. binfilter/bf_sw/source/core/sw3io/sw_sw3misc.cxx

Patch for 11rd: switch_case_enum_warnings10.diff

Files Modified:

warning: enumerator value 'xxxx' not handled in switch

1. binfilter/bf_sw/source/core/text/sw_txtfrm.cxx

Patch for 12rd: switch_case_enum_warnings11.diff

Files Modified:

warning: enumerator value 'xxxx' not handled in switch

1. binfilter/bf_sw/source/core/tox/sw_txmsrt.cxx

Patch for 13th: switch_case_enum_warnings12.diff

Files Modified:

warning: enumerator value 'xxxx' not handled in switch

1. binfilter/bf_sw/source/core/unocore/sw_unocoll.cxx
2. binfilter/bf_sw/source/core/unocore/sw_unoframe.cxx
3. binfilter/bf_sw/source/core/unocore/sw_unoidx.cxx
4. binfilter/bf_sw/source/core/unocore/sw_unoobj.cxx
5. binfilter/bf_sw/source/core/unocore/sw_unostyle.cxx
6. binfilter/bf_sw/source/core/unocore/sw_unotext.cxx

Patch for 14th: switch_case_enum_warnings13.diff

Files Modified:

warning: enumerator value 'xxxx' not handled in switch

1. binfilter/bf_sw/source/filter/xml/sw_xmltexte.cxx
2. binfilter/bf_sw/source/filter/xml/sw_xmltbli.cxx
3. binfilter/bf_sw/source/filter/xml/sw_xmlexpit.cxx

Patch for 15th: switch_case_enum_warnings14.diff

Files Modified:

warning: enumerator value 'xxxx' not handled in switch

1. binfilter/bf_xmloff/source/chart/xmloff_SchXMLExport.cxx

Patch for 16th: switch_case_enum_warnings15.diff

Files Modified:

warning: enumerator value 'xxxx' not handled in switch

1. binfilter/bf_xmloff/source/draw/xmloff_shapeexport2.cxx
2. binfilter/bf_xmloff/source/draw/xmloff_shapeexport3.cxx

Patch for 17th: switch_case_enum_warnings16.diff

Files Modified:

warning: enumerator value 'xxxx' not handled in switch

1. binfilter/bf_xmloff/source/forms/xmloff_elementexport.cxx

Patch for 18th: switch_case_enum_warnings17.diff

Files Modified:

warning: enumerator value 'xxxx' not handled in switch

1. binfilter/bf_xmloff/source/style/xmloff_xmlnumfe.cxx

Patch for 19th: switch_case_enum_warnings18.diff

Files Modified:

warning: enumerator value 'xxxx' not handled in switch

1. binfilter/bf_xmloff/source/text/xmloff_XMLTextColumnsExport.cxx

Patch for 20th: switch_case_enum_warnings19.diff

Notes

1. Don't write too long patches. Writing small patches may help in review and collaboration.

Individual Status/Message

1. Rakesh Pandit -- Working on fixing all warning -- enumerator value 'xxxx' not handled in switch after that will shift to other warnings. Will work in small small manageable patches (also concentrate on particular folder) rather then working randomly so that others could take up anything. -- 7th July

Personal tools