Skip to content

Commit 43420bd

Browse files
committed
issue #7635: Incorrect location for enum in XML file (part 2)
1 parent 7296e6b commit 43420bd

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+56
-63
lines changed

qtools/qcollection.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
*/
6161

6262

63-
/*! \enum QCollection::Item
63+
/*! \typedef QCollection::Item
6464
6565
This type is the generic "item" in a QCollection.
6666
*/

qtools/qdatastream.cpp

-7
Original file line numberDiff line numberDiff line change
@@ -814,13 +814,6 @@ QDataStream &QDataStream::operator<<( Q_INT64 i )
814814
return *this;
815815
}
816816

817-
/*!
818-
\fn QDataStream &QDataStream::operator<<( uint i )
819-
Writes an unsigned integer to the stream as a 32-bit unsigned integer
820-
(Q_UINT32).
821-
Returns a reference to the stream.
822-
*/
823-
824817
/*!
825818
\fn QDataStream &QDataStream::operator<<( int i )
826819
Writes a signed integer to the stream as a 32-bit signed integer (Q_INT32).

qtools/qfile.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -497,7 +497,7 @@ QCString QFile::encodeName( const QString &fileName )
497497
}
498498

499499
/*!
500-
\enum QFile::EncoderFn
500+
\typedef QFile::EncoderFn
501501
502502
This is used by QFile::setEncodingFunction().
503503
*/
@@ -532,7 +532,7 @@ QString QFile::decodeName( const QCString &localFileName )
532532
}
533533

534534
/*!
535-
\enum QFile::DecoderFn
535+
\typedef QFile::DecoderFn
536536
537537
This is used by QFile::setDecodingFunction().
538538
*/

src/doxygen.cpp

+8-8
Original file line numberDiff line numberDiff line change
@@ -7722,9 +7722,9 @@ static void addSourceReferences()
77227722
for (cli.toFirst();(cd=cli.current());++cli)
77237723
{
77247724
FileDef *fd=cd->getBodyDef();
7725-
if (fd && cd->isLinkableInProject() && cd->getStartBodyLine()!=-1)
7725+
if (fd && cd->isLinkableInProject() && cd->getDefLine()!=-1)
77267726
{
7727-
fd->addSourceRef(cd->getStartBodyLine(),cd,0);
7727+
fd->addSourceRef(cd->getDefLine(),cd,0);
77287728
}
77297729
}
77307730
// add source references for namespace definitions
@@ -7733,9 +7733,9 @@ static void addSourceReferences()
77337733
for (nli.toFirst();(nd=nli.current());++nli)
77347734
{
77357735
FileDef *fd=nd->getBodyDef();
7736-
if (fd && nd->isLinkableInProject() && nd->getStartBodyLine()!=-1)
7736+
if (fd && nd->isLinkableInProject() && nd->getDefLine()!=-1)
77377737
{
7738-
fd->addSourceRef(nd->getStartBodyLine(),nd,0);
7738+
fd->addSourceRef(nd->getDefLine(),nd,0);
77397739
}
77407740
}
77417741

@@ -7754,14 +7754,14 @@ static void addSourceReferences()
77547754
// md->getStartBodyLine(),md->isLinkableInProject());
77557755
FileDef *fd=md->getBodyDef();
77567756
if (fd &&
7757-
md->getStartBodyLine()!=-1 &&
7757+
md->getDefLine()!=-1 &&
77587758
md->isLinkableInProject() &&
77597759
(fd->generateSourceFile() || Doxygen::parseSourcesNeeded)
77607760
)
77617761
{
77627762
//printf("Found member '%s' in file '%s' at line '%d' def=%s\n",
77637763
// md->name().data(),fd->name().data(),md->getStartBodyLine(),md->getOuterScope()->name().data());
7764-
fd->addSourceRef(md->getStartBodyLine(),md->getOuterScope(),md);
7764+
fd->addSourceRef(md->getDefLine(),md->getOuterScope(),md);
77657765
}
77667766
}
77677767
}
@@ -7779,14 +7779,14 @@ static void addSourceReferences()
77797779
// md->isLinkableInProject(),
77807780
// Doxygen::parseSourcesNeeded);
77817781
if (fd &&
7782-
md->getStartBodyLine()!=-1 &&
7782+
md->getDefLine()!=-1 &&
77837783
md->isLinkableInProject() &&
77847784
(fd->generateSourceFile() || Doxygen::parseSourcesNeeded)
77857785
)
77867786
{
77877787
//printf("Found member '%s' in file '%s' at line '%d' def=%s\n",
77887788
// md->name().data(),fd->name().data(),md->getStartBodyLine(),md->getOuterScope()->name().data());
7789-
fd->addSourceRef(md->getStartBodyLine(),md->getOuterScope(),md);
7789+
fd->addSourceRef(md->getDefLine(),md->getOuterScope(),md);
77907790
}
77917791
}
77927792
}

testing/009/bug.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<term>Class <ref refid="class_bug" kindref="compound">Bug</ref> </term>
1313
</varlistentry>
1414
<listitem>
15-
<para><anchor id="bug_1_bug000001"/>Class bug. </para>
15+
<para><anchor id="bug_1_bug000001"/>Class bug. </para>
1616
</listitem>
1717
<varlistentry>
1818
<term>Member <ref refid="class_bug_1a1f720954dd97cd1203e80501a6eae74c" kindref="member">Bug::foo</ref> ()</term>

testing/009/class_bug.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
</xrefsect>
3333
</para>
3434
</detaileddescription>
35-
<location file="009_bug.cpp" line="16" column="1" bodyfile="009_bug.cpp" bodystart="15" bodyend="26"/>
35+
<location file="009_bug.cpp" line="15" column="1" bodyfile="009_bug.cpp" bodystart="16" bodyend="26"/>
3636
<listofallmembers>
3737
<member refid="class_bug_1a1f720954dd97cd1203e80501a6eae74c" prot="public" virt="non-virtual">
3838
<scope>Bug</scope>

testing/009/class_deprecated.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
</xrefsect>
3131
</para>
3232
</detaileddescription>
33-
<location file="009_bug.cpp" line="30" column="1" bodyfile="009_bug.cpp" bodystart="29" bodyend="36"/>
33+
<location file="009_bug.cpp" line="29" column="1" bodyfile="009_bug.cpp" bodystart="30" bodyend="36"/>
3434
<listofallmembers>
3535
<member refid="class_deprecated_1a1d5f6803e72c625727e7083d1722dbf9" prot="public" virt="non-virtual">
3636
<scope>Deprecated</scope>

testing/009/class_reminder.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
</xrefsect>
3838
</para>
3939
</detaileddescription>
40-
<location file="009_bug.cpp" line="56" column="1" bodyfile="009_bug.cpp" bodystart="55" bodyend="60"/>
40+
<location file="009_bug.cpp" line="55" column="1" bodyfile="009_bug.cpp" bodystart="56" bodyend="60"/>
4141
<listofallmembers>
4242
<member refid="class_reminder_1a173b5218bb11287b0e86a550d9f0728d" prot="public" virt="non-virtual">
4343
<scope>Reminder</scope>

testing/009/class_test.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
</xrefsect>
3838
</para>
3939
</detaileddescription>
40-
<location file="009_bug.cpp" line="48" column="1" bodyfile="009_bug.cpp" bodystart="47" bodyend="52"/>
40+
<location file="009_bug.cpp" line="47" column="1" bodyfile="009_bug.cpp" bodystart="48" bodyend="52"/>
4141
<listofallmembers>
4242
<member refid="class_test_1a9fc54b716f326514a4c5f434137f4fc0" prot="public" virt="non-virtual">
4343
<scope>Test</scope>

testing/009/class_todo.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
</xrefsect>
3838
</para>
3939
</detaileddescription>
40-
<location file="009_bug.cpp" line="40" column="1" bodyfile="009_bug.cpp" bodystart="39" bodyend="44"/>
40+
<location file="009_bug.cpp" line="39" column="1" bodyfile="009_bug.cpp" bodystart="40" bodyend="44"/>
4141
<listofallmembers>
4242
<member refid="class_todo_1a9e70ec9176ac4c1b20e011b4daddc9d8" prot="public" virt="non-virtual">
4343
<scope>Todo</scope>

testing/009/deprecated.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<term>Class <ref refid="class_deprecated" kindref="compound">Deprecated</ref> </term>
1313
</varlistentry>
1414
<listitem>
15-
<para><anchor id="deprecated_1_deprecated000001"/>This class is deprecated </para>
15+
<para><anchor id="deprecated_1_deprecated000001"/>This class is deprecated </para>
1616
</listitem>
1717
<varlistentry>
1818
<term>Member <ref refid="class_deprecated_1a1d5f6803e72c625727e7083d1722dbf9" kindref="member">Deprecated::deprecated</ref> ()</term>

testing/009/reminders.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<term>Class <ref refid="class_reminder" kindref="compound">Reminder</ref> </term>
1313
</varlistentry>
1414
<listitem>
15-
<para><anchor id="reminders_1_reminders000001"/> A reminder </para>
15+
<para><anchor id="reminders_1_reminders000001"/> A reminder </para>
1616
</listitem>
1717
<varlistentry>
1818
<term>Member <ref refid="class_reminder_1a173b5218bb11287b0e86a550d9f0728d" kindref="member">Reminder::reminder</ref> ()</term>

testing/009/test.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<term>Class <ref refid="class_test" kindref="compound">Test</ref> </term>
1313
</varlistentry>
1414
<listitem>
15-
<para><anchor id="test_1_test000001"/>This is part of testing </para>
15+
<para><anchor id="test_1_test000001"/>This is part of testing </para>
1616
</listitem>
1717
<varlistentry>
1818
<term>Member <ref refid="class_test_1a9fc54b716f326514a4c5f434137f4fc0" kindref="member">Test::test</ref> ()</term>

testing/009/todo.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<term>Class <ref refid="class_todo" kindref="compound">Todo</ref> </term>
1313
</varlistentry>
1414
<listitem>
15-
<para><anchor id="todo_1_todo000001"/>This still needs to be done. </para>
15+
<para><anchor id="todo_1_todo000001"/>This still needs to be done. </para>
1616
</listitem>
1717
<varlistentry>
1818
<term>Member <ref refid="class_todo_1a9e70ec9176ac4c1b20e011b4daddc9d8" kindref="member">Todo::todo</ref> ()</term>

testing/011/category_integer_07_arithmetic_08.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<detaileddescription>
4646
<para>A category </para>
4747
</detaileddescription>
48-
<location file="011_category.m" line="17" column="19" bodyfile="011_category.m" bodystart="17" bodyend="-1"/>
48+
<location file="011_category.m" line="17" column="12" bodyfile="011_category.m" bodystart="17" bodyend="-1"/>
4949
<listofallmembers>
5050
<member refid="category_integer_07_arithmetic_08_1a12f411c5872ba3bafb8ea7dd1826cf2a" prot="public" virt="virtual">
5151
<scope>Integer(Arithmetic)</scope>

testing/011/interface_integer.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
</childnode>
8181
</node>
8282
</collaborationgraph>
83-
<location file="011_category.m" line="6" column="26" bodyfile="011_category.m" bodystart="6" bodyend="-1"/>
83+
<location file="011_category.m" line="6" column="12" bodyfile="011_category.m" bodystart="6" bodyend="-1"/>
8484
<listofallmembers>
8585
<member refid="interface_integer_1a35e89216966d8179a1b77f14b8211fda" prot="protected" virt="non-virtual">
8686
<scope>Integer</scope>

testing/013/class_t1.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<detaileddescription>
99
<para>A class </para>
1010
</detaileddescription>
11-
<location file="013_class.h" line="11" column="1" bodyfile="013_class.h" bodystart="10" bodyend="12"/>
11+
<location file="013_class.h" line="10" column="1" bodyfile="013_class.h" bodystart="11" bodyend="12"/>
1212
<listofallmembers>
1313
</listofallmembers>
1414
</compounddef>

testing/013/class_t2.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<detaileddescription>
99
<para>class <ref refid="class_t2" kindref="compound">T2</ref> </para>
1010
</detaileddescription>
11-
<location file="013_class.h" line="15" column="1" bodyfile="013_class.h" bodystart="14" bodyend="16"/>
11+
<location file="013_class.h" line="14" column="1" bodyfile="013_class.h" bodystart="15" bodyend="16"/>
1212
<listofallmembers>
1313
</listofallmembers>
1414
</compounddef>

testing/013/class_t3.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<detaileddescription>
99
<para>class <ref refid="class_t3" kindref="compound">T3</ref> </para>
1010
</detaileddescription>
11-
<location file="013_class.h" line="19" column="1" bodyfile="013_class.h" bodystart="18" bodyend="20"/>
11+
<location file="013_class.h" line="18" column="1" bodyfile="013_class.h" bodystart="19" bodyend="20"/>
1212
<listofallmembers>
1313
</listofallmembers>
1414
</compounddef>

testing/013/class_t4.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<detaileddescription>
99
<para>class <ref refid="class_t4" kindref="compound">T4</ref> </para>
1010
</detaileddescription>
11-
<location file="013_class.h" line="23" column="1" bodyfile="013_class.h" bodystart="22" bodyend="24"/>
11+
<location file="013_class.h" line="22" column="1" bodyfile="013_class.h" bodystart="23" bodyend="24"/>
1212
<listofallmembers>
1313
</listofallmembers>
1414
</compounddef>

testing/018/018__def_8c.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
</detaileddescription>
4242
<inbodydescription>
4343
</inbodydescription>
44-
<location file="018_def.c" line="13" column="7" bodyfile="018_def.c" bodystart="13" bodyend="13"/>
44+
<location file="018_def.c" line="13" column="1" bodyfile="018_def.c" bodystart="13" bodyend="13"/>
4545
</memberdef>
4646
</sectiondef>
4747
<sectiondef kind="typedef">

testing/021/indexpage.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<briefdescription>
77
</briefdescription>
88
<detaileddescription>
9-
<para> Our main function starts like this: <programlisting filename="example_test.cpp"><codeline><highlight class="keywordtype">void</highlight><highlight class="normal"><sp/>main()</highlight></codeline><codeline><highlight class="normal">{</highlight></codeline></programlisting> First we create a object <computeroutput>t</computeroutput> of the <ref refid="class_test" kindref="compound">Test</ref> class. <programlisting filename="example_test.cpp"><codeline><highlight class="normal"><sp/><sp/><ref refid="class_test" kindref="compound">Test</ref><sp/>t;</highlight></codeline></programlisting> Then we call the example member function <programlisting filename="example_test.cpp"><codeline><highlight class="normal"><sp/><sp/>t.<ref refid="class_test_1a47b775f65718978f1ffcd96376f8ecfa" kindref="member">example</ref>();</highlight></codeline></programlisting> After that our little test routine ends. <programlisting filename="example_test.cpp"><codeline><highlight class="normal">}</highlight></codeline></programlisting> </para>
9+
<para> Our main function starts like this: <programlisting filename="example_test.cpp"><codeline><highlight class="keywordtype">void</highlight><highlight class="normal"><sp/>main()</highlight></codeline><codeline><highlight class="normal">{</highlight></codeline></programlisting> First we create a object <computeroutput>t</computeroutput> of the <ref refid="class_test" kindref="compound">Test</ref> class. <programlisting filename="example_test.cpp"><codeline><highlight class="normal"><sp/><sp/><ref refid="class_test" kindref="compound">Test</ref><sp/>t;</highlight></codeline></programlisting> Then we call the example member function <programlisting filename="example_test.cpp"><codeline><highlight class="normal"><sp/><sp/>t.<ref refid="class_test_1a47b775f65718978f1ffcd96376f8ecfa" kindref="member">example</ref>();</highlight></codeline></programlisting> After that our little test routine ends. <programlisting filename="example_test.cpp"><codeline><highlight class="normal">}</highlight></codeline></programlisting> </para>
1010
</detaileddescription>
1111
</compounddef>
1212
</doxygen>

testing/025/class_test.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<detaileddescription>
2626
<para>More details about this class. </para>
2727
</detaileddescription>
28-
<location file="025_example.cpp" line="11" column="1" bodyfile="025_example.cpp" bodystart="10" bodyend="18"/>
28+
<location file="025_example.cpp" line="10" column="1" bodyfile="025_example.cpp" bodystart="11" bodyend="18"/>
2929
<listofallmembers>
3030
<member refid="class_test_1a47b775f65718978f1ffcd96376f8ecfa" prot="public" virt="non-virtual">
3131
<scope>Test</scope>

testing/026/class_test.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
<para>A <ref refid="class_test" kindref="compound">Test</ref> class. More details about this class. <parameterlist kind="templateparam"><parameteritem><parameternamelist><parametername>T</parametername></parameternamelist><parameterdescription><para>A template parameter. </para></parameterdescription></parameteritem></parameterlist>
4242
</para>
4343
</detaileddescription>
44-
<location file="026_exception.cpp" line="9" column="1" bodyfile="026_exception.cpp" bodystart="8" bodyend="20"/>
44+
<location file="026_exception.cpp" line="8" column="11" bodyfile="026_exception.cpp" bodystart="9" bodyend="20"/>
4545
<listofallmembers>
4646
<member refid="class_test_1abf9d5fbdaa4c23d0a513ee9746060779" prot="public" virt="non-virtual">
4747
<scope>Test</scope>

testing/027/struct_car.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
</childnode>
6969
</node>
7070
</collaborationgraph>
71-
<location file="027_extends.c" line="68" column="1" bodyfile="027_extends.c" bodystart="67" bodyend="70"/>
71+
<location file="027_extends.c" line="67" column="1" bodyfile="027_extends.c" bodystart="68" bodyend="70"/>
7272
<listofallmembers>
7373
<member refid="struct_car_1ab8ff28306286da5a8b14fa9bdccaafaa" prot="protected" virt="non-virtual">
7474
<scope>Car</scope>

testing/027/struct_object.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
</childnode>
8787
</node>
8888
</inheritancegraph>
89-
<location file="027_extends.c" line="20" column="1" bodyfile="027_extends.c" bodystart="19" bodyend="22"/>
89+
<location file="027_extends.c" line="19" column="1" bodyfile="027_extends.c" bodystart="20" bodyend="22"/>
9090
<listofallmembers>
9191
<member refid="struct_object_1a71225073d06a793b9a6ea9263ed37b12" prot="public" virt="non-virtual">
9292
<scope>Object</scope>

testing/027/struct_truck.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
<link refid="struct_object"/>
6969
</node>
7070
</collaborationgraph>
71-
<location file="027_extends.c" line="78" column="1" bodyfile="027_extends.c" bodystart="77" bodyend="80"/>
71+
<location file="027_extends.c" line="77" column="1" bodyfile="027_extends.c" bodystart="78" bodyend="80"/>
7272
<listofallmembers>
7373
<member refid="struct_truck_1ad0ac321609dda1a6c552488b05ec7ac8" prot="protected" virt="non-virtual">
7474
<scope>Truck</scope>

testing/027/struct_vehicle.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105
<link refid="struct_object"/>
106106
</node>
107107
</collaborationgraph>
108-
<location file="027_extends.c" line="44" column="1" bodyfile="027_extends.c" bodystart="43" bodyend="46"/>
108+
<location file="027_extends.c" line="43" column="1" bodyfile="027_extends.c" bodystart="44" bodyend="46"/>
109109
<listofallmembers>
110110
<member refid="struct_vehicle_1ad7970f528d429f6fc1725173e93a77c2" prot="protected" virt="non-virtual">
111111
<scope>Vehicle</scope>

testing/037/class_receiver.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
</msc>
3333
</para>
3434
</detaileddescription>
35-
<location file="037_msc.cpp" line="29" column="1" bodyfile="037_msc.cpp" bodystart="28" bodyend="33"/>
35+
<location file="037_msc.cpp" line="28" column="1" bodyfile="037_msc.cpp" bodystart="29" bodyend="33"/>
3636
<listofallmembers>
3737
<member refid="class_receiver_1a162099741e0324e6254c9bc570566e40" prot="public" virt="non-virtual">
3838
<scope>Receiver</scope>

testing/037/class_sender.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
</msc>
3333
</para>
3434
</detaileddescription>
35-
<location file="037_msc.cpp" line="14" column="1" bodyfile="037_msc.cpp" bodystart="13" bodyend="18"/>
35+
<location file="037_msc.cpp" line="13" column="1" bodyfile="037_msc.cpp" bodystart="14" bodyend="18"/>
3636
<listofallmembers>
3737
<member refid="class_sender_1a8ad2c6f9baa4e798868fe4a4d45f8fda" prot="public" virt="non-virtual">
3838
<scope>Sender</scope>

testing/039/class_test.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
<detaileddescription>
5656
<para>More details about this class. </para>
5757
</detaileddescription>
58-
<location file="039_name.cpp" line="9" column="1" bodyfile="039_name.cpp" bodystart="8" bodyend="24"/>
58+
<location file="039_name.cpp" line="8" column="1" bodyfile="039_name.cpp" bodystart="9" bodyend="24"/>
5959
<listofallmembers>
6060
<member refid="class_test_1a78e37a450a276b60a5a2fa4a46c86f2e" prot="public" virt="non-virtual">
6161
<scope>Test</scope>

testing/040/namespace_n_s.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
<detaileddescription>
88
<para>A namespace </para>
99
</detaileddescription>
10-
<location file="040_namespace.cpp" line="5" column="1"/>
10+
<location file="040_namespace.cpp" line="4" column="1"/>
1111
</compounddef>
1212
</doxygen>

testing/041/class_test.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
<detaileddescription>
8282
<para>More text. </para>
8383
</detaileddescription>
84-
<location file="041_overload.cpp" line="5" column="1" bodyfile="041_overload.cpp" bodystart="4" bodyend="10"/>
84+
<location file="041_overload.cpp" line="4" column="1" bodyfile="041_overload.cpp" bodystart="5" bodyend="10"/>
8585
<listofallmembers>
8686
<member refid="class_test_1a8e7b46ceaf7bd2ab94114b390b3288ca" prot="public" virt="non-virtual">
8787
<scope>Test</scope>

testing/044/struct_s.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898
<detaileddescription>
9999
<para>A struct </para>
100100
</detaileddescription>
101-
<location file="044_section.h" line="6" column="1" bodyfile="044_section.h" bodystart="5" bodyend="27"/>
101+
<location file="044_section.h" line="5" column="1" bodyfile="044_section.h" bodystart="6" bodyend="27"/>
102102
<listofallmembers>
103103
<member refid="struct_s_1ab754fee7e3500035f644d0ac528cbfc3" prot="private" virt="non-virtual">
104104
<scope>S</scope>

testing/046/class_test.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
<para>A test class <simplesect kind="see"><para><ref refid="class_test_1a1683da699dc049d74101488d143c8e98" kindref="member">Test::method()</ref></para></simplesect>
6262
</para>
6363
</detaileddescription>
64-
<location file="046_related.cpp" line="11" column="1" bodyfile="046_related.cpp" bodystart="10" bodyend="15"/>
64+
<location file="046_related.cpp" line="10" column="1" bodyfile="046_related.cpp" bodystart="11" bodyend="15"/>
6565
<listofallmembers>
6666
<member refid="class_test_1a1283d836e0611ff772c1b06a31ecbbfe" prot="public" virt="non-virtual">
6767
<scope>Test</scope>

testing/064/struct_foo.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797
</itemizedlist>
9898
</para>
9999
</detaileddescription>
100-
<location file="064_castoperator.cpp" line="20" column="10" bodyfile="064_castoperator.cpp" bodystart="20" bodyend="25"/>
100+
<location file="064_castoperator.cpp" line="20" column="1" bodyfile="064_castoperator.cpp" bodystart="20" bodyend="25"/>
101101
<listofallmembers>
102102
<member refid="struct_foo_1aab9774d892b6cd4a0fbebd034b4c1fad" prot="public" virt="non-virtual">
103103
<scope>Foo</scope>

0 commit comments

Comments
 (0)