Fix bad RECT declaration spacing
Yes I'm that bad at search & replace Signed-off-by: Gabriel Ravier <gabravier@gmail.com>
This commit is contained in:
parent
3d42044917
commit
569c2c28b6
1 changed files with 13 additions and 26 deletions
|
@ -126,8 +126,7 @@ void ActCaret02(CARET *crt)
|
|||
|
||||
void ActCaret03(CARET *crt)
|
||||
{
|
||||
RECT rect[4] ={
|
||||
|
||||
RECT rect[4] = {
|
||||
{0, 48, 16, 64},
|
||||
{16, 48, 32, 64},
|
||||
{32, 48, 48, 64},
|
||||
|
@ -146,8 +145,7 @@ void ActCaret03(CARET *crt)
|
|||
|
||||
void ActCaret04(CARET *crt)
|
||||
{
|
||||
RECT rect[9] ={
|
||||
|
||||
RECT rect[9] = {
|
||||
{64, 32, 80, 48},
|
||||
{80, 32, 96, 48},
|
||||
{96, 32, 112, 48},
|
||||
|
@ -172,8 +170,7 @@ void ActCaret04(CARET *crt)
|
|||
|
||||
void ActCaret05(CARET *crt)
|
||||
{
|
||||
RECT rect[7] ={
|
||||
|
||||
RECT rect[7] = {
|
||||
{32, 64, 40, 72},
|
||||
{32, 72, 40, 80},
|
||||
{40, 64, 48, 72},
|
||||
|
@ -200,8 +197,7 @@ void ActCaret05(CARET *crt)
|
|||
|
||||
void ActCaret07(CARET *crt)
|
||||
{
|
||||
RECT rcLeft[7] ={
|
||||
|
||||
RECT rcLeft[7] = {
|
||||
{56, 0, 64, 8},
|
||||
{64, 0, 72, 8},
|
||||
{72, 0, 80, 8},
|
||||
|
@ -268,14 +264,12 @@ void ActCaret09(CARET *crt)
|
|||
|
||||
void ActCaret10(CARET *crt)
|
||||
{
|
||||
RECT rcLeft[2] ={
|
||||
|
||||
RECT rcLeft[2] = {
|
||||
{0, 0, 56, 16},
|
||||
{0, 16, 56, 32},
|
||||
};
|
||||
|
||||
RECT rcRight[2] ={
|
||||
|
||||
RECT rcRight[2] = {
|
||||
{0, 96, 56, 112},
|
||||
{0, 112, 56, 128},
|
||||
};
|
||||
|
@ -320,8 +314,7 @@ void ActCaret11(CARET *crt)
|
|||
crt->x += crt->xm;
|
||||
crt->y += crt->ym;
|
||||
|
||||
RECT rcRight[7] ={
|
||||
|
||||
RECT rcRight[7] = {
|
||||
{56, 8, 64, 16},
|
||||
{64, 8, 72, 16},
|
||||
{72, 8, 80, 16},
|
||||
|
@ -343,8 +336,7 @@ void ActCaret11(CARET *crt)
|
|||
|
||||
void ActCaret12(CARET *crt)
|
||||
{
|
||||
RECT rcLeft[2] ={
|
||||
|
||||
RECT rcLeft[2] = {
|
||||
{112, 0, 144, 32},
|
||||
{144, 0, 176, 32},
|
||||
};
|
||||
|
@ -361,8 +353,7 @@ void ActCaret12(CARET *crt)
|
|||
|
||||
void ActCaret13(CARET *crt)
|
||||
{
|
||||
RECT rcLeft[2] ={
|
||||
|
||||
RECT rcLeft[2] = {
|
||||
{56, 24, 64, 32},
|
||||
{0, 0, 0, 0},
|
||||
};
|
||||
|
@ -406,8 +397,7 @@ void ActCaret13(CARET *crt)
|
|||
|
||||
void ActCaret14(CARET *crt)
|
||||
{
|
||||
RECT rect[5] ={
|
||||
|
||||
RECT rect[5] = {
|
||||
{0, 96, 40, 136},
|
||||
{40, 96, 80, 136},
|
||||
{80, 96, 120, 136},
|
||||
|
@ -428,8 +418,7 @@ void ActCaret14(CARET *crt)
|
|||
|
||||
void ActCaret15(CARET *crt)
|
||||
{
|
||||
RECT rcLeft[4] ={
|
||||
|
||||
RECT rcLeft[4] = {
|
||||
{0, 72, 8, 80},
|
||||
{8, 72, 16, 80},
|
||||
{16, 72, 24, 80},
|
||||
|
@ -449,8 +438,7 @@ void ActCaret15(CARET *crt)
|
|||
|
||||
void ActCaret16(CARET *crt)
|
||||
{
|
||||
RECT rcLeft[2] ={
|
||||
|
||||
RECT rcLeft[2] = {
|
||||
{104, 96, 144, 104},
|
||||
{104, 104, 144, 112},
|
||||
};
|
||||
|
@ -466,8 +454,7 @@ void ActCaret16(CARET *crt)
|
|||
|
||||
void ActCaret17(CARET *crt)
|
||||
{
|
||||
RECT rcLeft[2] ={
|
||||
|
||||
RECT rcLeft[2] = {
|
||||
{0, 144, 144, 152},
|
||||
{0, 0, 0, 0},
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue