Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
onlyoffice_core
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boris Kocherov
onlyoffice_core
Commits
d357203b
Commit
d357203b
authored
Sep 20, 2016
by
ElenaSubbotina
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
..
parent
4c4e0cca
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
21 additions
and
18 deletions
+21
-18
ASCOfficeXlsFile2/source/XlsFormat/Logic/Biff_structures/Bes.cpp
...ceXlsFile2/source/XlsFormat/Logic/Biff_structures/Bes.cpp
+1
-0
ASCOfficeXlsFile2/source/XlsFormat/Logic/Biff_structures/ExtProp.cpp
...sFile2/source/XlsFormat/Logic/Biff_structures/ExtProp.cpp
+1
-1
ASCOfficeXlsFile2/source/XlsFormat/Logic/Biff_structures/RevLblName.cpp
...le2/source/XlsFormat/Logic/Biff_structures/RevLblName.cpp
+1
-0
ASCOfficeXlsFile2/source/XlsFormat/Logic/Biff_structures/XFProp.cpp
...lsFile2/source/XlsFormat/Logic/Biff_structures/XFProp.cpp
+18
-17
No files found.
ASCOfficeXlsFile2/source/XlsFormat/Logic/Biff_structures/Bes.cpp
View file @
d357203b
...
...
@@ -80,6 +80,7 @@ const std::wstring Bes::toString()
return
L"#GETTING_DATA"
;
default:
// EXCEPT::RT::WrongBiffRecord("Unsupported type of Bes.", "unknown");
break
;
}
}
else
...
...
ASCOfficeXlsFile2/source/XlsFormat/Logic/Biff_structures/ExtProp.cpp
View file @
d357203b
...
...
@@ -77,7 +77,7 @@ void ExtProp::load(CFRecord& record)
record
>>
extPropData
.
indent_level
;
break
;
default:
//
throw
EXCEPT::RT::WrongBiffRecord("Unsupported type of the extension.", record.getTypeString());
//EXCEPT::RT::WrongBiffRecord("Unsupported type of the extension.", record.getTypeString());
break
;
}
}
...
...
ASCOfficeXlsFile2/source/XlsFormat/Logic/Biff_structures/RevLblName.cpp
View file @
d357203b
...
...
@@ -119,6 +119,7 @@ void RevLblName::load(CFRecord& record)
break
;
default:
// EXCEPT::RT::WrongBiffRecord("Unsupported value of built-in name.", record.getTypeString());
break
;
}
}
...
...
ASCOfficeXlsFile2/source/XlsFormat/Logic/Biff_structures/XFProp.cpp
View file @
d357203b
...
...
@@ -141,6 +141,7 @@ void XFProp::load(CFRecord& record)
}
default:
// EXCEPT::RT::WrongBiffRecord("Unsupported type of XFProp.", record.getTypeString());
break
;
}
record
>>
*
xfPropDataBlob
;
}
...
...
@@ -221,23 +222,23 @@ void XFProp::serialize_attr(CP_ATTR_NODE)
switch
(
*
byte_
)
{
case
2
:
CP_XML_ATTR
(
L"patternType"
,
L"pct50"
);
break
;
//50% gray
case
3
:
CP_XML_ATTR
(
L"patternType"
,
L"pct75"
);
break
;
//75% gray
case
4
:
CP_XML_ATTR
(
L"patternType"
,
L"pct25"
);
break
;
//25% gray
case
5
:
CP_XML_ATTR
(
L"patternType"
,
L"horzStripe"
);
break
;
//Horizontal stripe
case
6
:
CP_XML_ATTR
(
L"patternType"
,
L"vertStripe"
);
break
;
//Vertical stripe
case
7
:
CP_XML_ATTR
(
L"patternType"
,
L"reverseDiagStripe"
);
break
;
//Reverse diagonal stripe
case
8
:
CP_XML_ATTR
(
L"patternType"
,
L"diagStripe"
);
break
;
//Diagonal stripe
case
9
:
CP_XML_ATTR
(
L"patternType"
,
L"diagCross"
);
break
;
//Diagonal crosshatch
case
10
:
CP_XML_ATTR
(
L"patternType"
,
L"trellis"
);
break
;
//Thick Diagonal crosshatch
case
11
:
CP_XML_ATTR
(
L"patternType"
,
L"thinHorzStripe"
);
break
;
//Thin horizontal stripe
case
12
:
CP_XML_ATTR
(
L"patternType"
,
L"thinVertStripe"
);
break
;
//Thin vertical stripe
case
13
:
CP_XML_ATTR
(
L"patternType"
,
L"thinReverseDiagStripe"
);
break
;
//Thin reverse diagonal stripe
case
14
:
CP_XML_ATTR
(
L"patternType"
,
L"thinDiagStripe"
);
break
;
//Thin diagonal stripe
case
15
:
CP_XML_ATTR
(
L"patternType"
,
L"thinHorzCross"
);
break
;
//Thin horizontal crosshatch
case
16
:
CP_XML_ATTR
(
L"patternType"
,
L"thinDiagCross"
);
break
;
//Thin diagonal crosshatch
case
17
:
CP_XML_ATTR
(
L"patternType"
,
L"gray125"
);
break
;
//12.5% gray
case
18
:
CP_XML_ATTR
(
L"patternType"
,
L"gray0625"
);
break
;
//6.25% gray
case
2
:
CP_XML_ATTR
(
L"patternType"
,
L"pct50"
);
break
;
//50% gray
case
3
:
CP_XML_ATTR
(
L"patternType"
,
L"pct75"
);
break
;
//75% gray
case
4
:
CP_XML_ATTR
(
L"patternType"
,
L"pct25"
);
break
;
//25% gray
case
5
:
CP_XML_ATTR
(
L"patternType"
,
L"horzStripe"
);
break
;
//Horizontal stripe
case
6
:
CP_XML_ATTR
(
L"patternType"
,
L"vertStripe"
);
break
;
//Vertical stripe
case
7
:
CP_XML_ATTR
(
L"patternType"
,
L"reverseDiagStripe"
);
break
;
//Reverse diagonal stripe
case
8
:
CP_XML_ATTR
(
L"patternType"
,
L"diagStripe"
);
break
;
//Diagonal stripe
case
9
:
CP_XML_ATTR
(
L"patternType"
,
L"diagCross"
);
break
;
//Diagonal crosshatch
case
10
:
CP_XML_ATTR
(
L"patternType"
,
L"trellis"
);
break
;
//Thick Diagonal crosshatch
case
11
:
CP_XML_ATTR
(
L"patternType"
,
L"thinHorzStripe"
);
break
;
//Thin horizontal stripe
case
12
:
CP_XML_ATTR
(
L"patternType"
,
L"thinVertStripe"
);
break
;
//Thin vertical stripe
case
13
:
CP_XML_ATTR
(
L"patternType"
,
L"thinReverseDiagStripe"
);
break
;
//Thin reverse diagonal stripe
case
14
:
CP_XML_ATTR
(
L"patternType"
,
L"thinDiagStripe"
);
break
;
//Thin diagonal stripe
case
15
:
CP_XML_ATTR
(
L"patternType"
,
L"thinHorzCross"
);
break
;
//Thin horizontal crosshatch
case
16
:
CP_XML_ATTR
(
L"patternType"
,
L"thinDiagCross"
);
break
;
//Thin diagonal crosshatch
case
17
:
CP_XML_ATTR
(
L"patternType"
,
L"gray125"
);
break
;
//12.5% gray
case
18
:
CP_XML_ATTR
(
L"patternType"
,
L"gray0625"
);
break
;
//6.25% gray
default:
CP_XML_ATTR
(
L"patternType"
,
L"solid"
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment