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
4d3b406c
Commit
4d3b406c
authored
May 13, 2016
by
konovalovsergey
Committed by
Alexander Trofimov
May 21, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
endsWith
parent
c8558338
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
Common/DocxFormat/Source/XlsxFormat/SimpleTypes_Spreadsheet.h
...on/DocxFormat/Source/XlsxFormat/SimpleTypes_Spreadsheet.h
+4
-1
No files found.
Common/DocxFormat/Source/XlsxFormat/SimpleTypes_Spreadsheet.h
View file @
4d3b406c
...
...
@@ -2176,7 +2176,8 @@ namespace SimpleTypes
notContainsText
=
13
,
timePeriod
=
14
,
top10
=
15
,
uniqueValues
=
16
uniqueValues
=
16
,
endsWith
=
17
};
template
<
ECfType
eDefValue
=
dataBar
>
class
ST_CfType
:
public
CSimpleType
<
ECfType
,
eDefValue
>
...
...
@@ -2203,6 +2204,7 @@ namespace SimpleTypes
else
if
(
_T
(
"timePeriod"
)
==
sValue
)
this
->
m_eValue
=
timePeriod
;
else
if
(
_T
(
"top10"
)
==
sValue
)
this
->
m_eValue
=
top10
;
else
if
(
_T
(
"uniqueValues"
)
==
sValue
)
this
->
m_eValue
=
uniqueValues
;
else
if
(
_T
(
"endsWith"
)
==
sValue
)
this
->
m_eValue
=
endsWith
;
else
this
->
m_eValue
=
eDefValue
;
return
this
->
m_eValue
;
}
...
...
@@ -2228,6 +2230,7 @@ namespace SimpleTypes
case
timePeriod
:
return
_T
(
"timePeriod"
);
break
;
case
top10
:
return
_T
(
"top10"
);
break
;
case
uniqueValues
:
return
_T
(
"uniqueValues"
);
break
;
case
endsWith
:
return
_T
(
"endsWith"
);
break
;
default
:
return
_T
(
"dataBar"
);
}
}
...
...
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