Skip to content

Commit

Permalink
左括弧は行末にあればよいようにする
Browse files Browse the repository at this point in the history
  • Loading branch information
m-tmatma committed Dec 29, 2018
1 parent 4d49918 commit c67633b
Show file tree
Hide file tree
Showing 50 changed files with 0 additions and 60 deletions.
1 change: 0 additions & 1 deletion MakefileMake/MakefileMake.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,6 @@ int makeFileList(std::string top_dir, std::string dir, SExpList sexp)
// search subdirectory
if ((ffData.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) &&
(strcmp(ffData.cFileName, ".") != 0 && strcmp(ffData.cFileName, "..") != 0)) {

fl_nm = ffData.cFileName;
if (dir != "") {
fl_nm = dir + "/" + fl_nm;
Expand Down
1 change: 0 additions & 1 deletion sakura_core/CGrepAgent.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1337,7 +1337,6 @@ int CGrepAgent::DoGrepFile(
// From Here 2005.03.19 かろと もはやBREGEXP構造体に直接アクセスしない
// 2010.08.25 行頭以外で^にマッチする不具合の修正
while( nIndex <= nLineLen && pRegexp->Match( pLine, nLineLen, nIndex ) ){

// パターン発見
nIndex = pRegexp->GetIndex();
int matchlen = pRegexp->GetMatchLen();
Expand Down
1 change: 0 additions & 1 deletion sakura_core/CGrepEnumKeys.h
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ class CGrepEnumKeys {
bool bRelPath = _IS_REL_PATH( token );
int nValidStatus = ValidateKey( token );
if( 0 != nValidStatus ){

return nValidStatus;
}
if( keyType == FILTER_SEARCH ){
Expand Down
1 change: 0 additions & 1 deletion sakura_core/CPropertyManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ bool CPropertyManager::OpenPropertySheet( HWND hWnd, int nPageNum, bool bTrayPro

/* プロパティシートの作成 */
if( pcPropCommon->DoPropertySheet( m_nPropComPageNum, bTrayProc ) ){

// 2002.12.11 Moca この部分で行われていたデータのコピーをCPropCommonに移動・関数化
// ShareData に 設定を適用・コピーする
// 2007.06.20 ryoji グループ化に変更があったときはグループIDをリセットする
Expand Down
1 change: 0 additions & 1 deletion sakura_core/_main/CCommandLine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,6 @@ void CCommandLine::ParseCommandLine( LPCTSTR pszCmdLineSrc, bool bResponse )
// 2007.09.09 genta オプション判定ルール変更.オプション解析停止と""で囲まれたオプションを考慮
if( ( bParseOptDisabled ||
! (pszToken[0] == '-' || pszToken[0] == '"' && pszToken[1] == '-' ) )){

if( pszToken[0] == _T('\"') ){
CNativeT cmWork;
// Nov. 3, 2005 genta
Expand Down
1 change: 0 additions & 1 deletion sakura_core/_main/CControlTray.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -919,7 +919,6 @@ LRESULT CControlTray::DispatchEvent(
ActivateFrameWindow( hwndWork );
}
else if( nId-IDM_SELMRU >= 0 && nId-IDM_SELMRU < 999 ){

/* 新しい編集ウィンドウを開く */
// From Here Oct. 27, 2000 genta カーソル位置を復元しない機能
const CMRUFile cMRU;
Expand Down
1 change: 0 additions & 1 deletion sakura_core/apiwrap/StdApi.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ static void DestroyMbString(ACHAR* pMbString)
#endif // ndef _UNICODE

namespace ApiWrap{

/*!
MakeSureDirectoryPathExists の UNICODE 版。
szDirPath で指定されたすべてのディレクトリを作成します。
Expand Down
1 change: 0 additions & 1 deletion sakura_core/apiwrap/StdControl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
#include "util/tchar_receive.h"

namespace ApiWrap{

LRESULT List_GetText(HWND hwndList, int nIndex, ACHAR* str)
{
LRESULT nCount = SendMessage( hwndList, LB_GETTEXTLEN, (WPARAM)nIndex, (LPARAM)0);
Expand Down
1 change: 0 additions & 1 deletion sakura_core/apiwrap/StdControl.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ UNICODE版では問題無いが、ANSI版では設定の前にコード変換す
#include <vector>

namespace ApiWrap{

// -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- //
// ウィンドウ共通 //
// -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- //
Expand Down
1 change: 0 additions & 1 deletion sakura_core/charset/CESI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -576,7 +576,6 @@ void CESI::GetEncodingInfo_uni( const char* pS, const int nLen )
pr_end = pS + nLen;

for( ; ; ){

nret1 = CheckUtf16leChar( reinterpret_cast<const wchar_t*>(pr1), (pr_end - pr1)/sizeof(wchar_t), &echarset1, 0 );
nret2 = CheckUtf16beChar( reinterpret_cast<const wchar_t*>(pr2), (pr_end - pr2)/sizeof(wchar_t), &echarset2, 0 );
if( nret1 == 0 && nret2 == 0 ){
Expand Down
1 change: 0 additions & 1 deletion sakura_core/charset/CLatin1.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
#include "CCodeBase.h"

class CLatin1 : public CCodeBase{

public:
//CCodeBaseインターフェース
EConvertResult CodeToUnicode(const CMemory& cSrc, CNativeW* pDst){ return Latin1ToUnicode(cSrc, pDst); } //!< 特定コード → UNICODE 変換
Expand Down
1 change: 0 additions & 1 deletion sakura_core/charset/CShiftJis.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
struct CommonSetting_Statusbar;

class CShiftJis : public CCodeBase{

public:
//CCodeBaseインターフェース
EConvertResult CodeToUnicode(const CMemory& cSrc, CNativeW* pDst){ return SJISToUnicode(cSrc, pDst); } //!< 特定コード → UNICODE 変換
Expand Down
1 change: 0 additions & 1 deletion sakura_core/charset/CUtf8.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ int CUtf8::Utf8ToUni( const char* pSrc, const int nSrcLen, wchar_t* pDst, bool b
pw = reinterpret_cast<unsigned short*>(pDst);

for( ; ; ){

// 文字をチェック
if( bCESU8Mode != true ){
nclen = CheckUtf8Char( reinterpret_cast<const char*>(pr), pr_end-pr, &echarset, true, 0 );
Expand Down
1 change: 0 additions & 1 deletion sakura_core/charset/codechecker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,6 @@ int _CheckUtf16Char( const wchar_t* pS, const int nLen, ECharSet *peCharset, con
}

if( 2 <= nLen ){

// サロゲートペアの確認

if( IsUtf16SurrogHi(wc1) && IsUtf16SurrogLow(wc2) ){
Expand Down
1 change: 0 additions & 1 deletion sakura_core/cmd/CViewCommander_Cursor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,6 @@ int CViewCommander::Command_LEFT( bool bSelect, bool bRepeat )
int nRes = 0;
CLayoutPoint ptCaretMove = GetCaret().GetCaretLayoutPos();
for( int nRepCount = 0; nRepCount < nRepeat; ++nRepCount ) {

if( bSelect && ! m_pCommanderView->GetSelectionInfo().IsTextSelected() ) {
/* 現在のカーソル位置から選択を開始する */
m_pCommanderView->GetSelectionInfo().BeginSelectArea();
Expand Down
1 change: 0 additions & 1 deletion sakura_core/cmd/CViewCommander_File.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -875,7 +875,6 @@ BOOL CViewCommander::Command_INSFILE( LPCWSTR filename, ECodeType nCharCode, int
// エラー時はthrow CError_FileRead を投げます
CNativeW cBuf;
while( RESULT_FAILURE != cfl.ReadLine( &cBuf, &cEol ) ){

const wchar_t* pLine = cBuf.GetStringPtr();
int nLineLen = cBuf.GetStringLength();

Expand Down
1 change: 0 additions & 1 deletion sakura_core/cmd/CViewCommander_Search.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1504,7 +1504,6 @@ void CViewCommander::Command_SEARCH_CLEARMARK( void )
//検索マークのセット

if(m_pCommanderView->GetSelectionInfo().IsTextSelected()){

// 検索文字列取得
CNativeW cmemCurText;
m_pCommanderView->GetCurrentTextForSearch( cmemCurText, false );
Expand Down
1 change: 0 additions & 1 deletion sakura_core/cmd/CViewCommander_Select.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ bool CViewCommander::Command_SELECTWORD( CLayoutPoint* pptCaretPos )

/* 現在位置の単語の範囲を調べる */
if( GetDocument()->m_cLayoutMgr.WhereCurrentWord( ptCaretPos.GetY2(), nIdx, &sRange, NULL, NULL ) ){

// 指定された行のデータ内の位置に対応する桁の位置を調べる
// 2007.10.15 kobake 既にレイアウト単位なので変換は不要
/*
Expand Down
1 change: 0 additions & 1 deletion sakura_core/convert/CDecode_UuDecode.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@
#include "convert/CDecode.h"

class CDecode_UuDecode : public CDecode{

TCHAR m_aFilename[_MAX_PATH];
public:
bool DoDecode(const CNativeW& cData, CMemory* pDst);
Expand Down
1 change: 0 additions & 1 deletion sakura_core/dlg/CDlgFind.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,6 @@ BOOL CDlgFind::OnBnClicked( int wID )
case IDC_CHK_REGULAREXP: /* 正規表現 */
// MYTRACE( _T("IDC_CHK_REGULAREXP ::IsDlgButtonChecked( GetHwnd(), IDC_CHK_REGULAREXP ) = %d\n"), ::IsDlgButtonChecked( GetHwnd(), IDC_CHK_REGULAREXP ) );
if( ::IsDlgButtonChecked( GetHwnd(), IDC_CHK_REGULAREXP ) ){

// From Here Jun. 26, 2001 genta
// 正規表現ライブラリの差し替えに伴う処理の見直し
if( !CheckRegexpVersion( GetHwnd(), IDC_STATIC_JRE32VER, true ) ){
Expand Down
3 changes: 0 additions & 3 deletions sakura_core/dlg/CDlgReplace.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,6 @@ BOOL CDlgReplace::OnBnClicked( int wID )
case IDC_BUTTON_SEARCHPREV: /* 上検索 */
nRet = GetData();
if( 0 < nRet ){

// 検索開始位置を登録 02/07/28 ai start
if( FALSE != pcEditView->m_bSearch ){
pcEditView->m_ptSrchStartPos_PHY = m_ptEscCaretPos_PHY;
Expand All @@ -515,7 +514,6 @@ BOOL CDlgReplace::OnBnClicked( int wID )
case IDC_BUTTON_SEARCHNEXT: /* 下検索 */
nRet = GetData();
if( 0 < nRet ){

// 検索開始位置を登録 02/07/28 ai start
if( FALSE != pcEditView->m_bSearch ){
pcEditView->m_ptSrchStartPos_PHY = m_ptEscCaretPos_PHY;
Expand Down Expand Up @@ -543,7 +541,6 @@ BOOL CDlgReplace::OnBnClicked( int wID )
case IDC_BUTTON_REPALCE: /* 置換 */
nRet = GetData();
if( 0 < nRet ){

// 置換開始位置を登録 02/07/28 ai start
if( FALSE != pcEditView->m_bSearch ){
pcEditView->m_ptSrchStartPos_PHY = m_ptEscCaretPos_PHY;
Expand Down
1 change: 0 additions & 1 deletion sakura_core/doc/layout/CTsvModeInfo.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ class CDocLineMgr;

// TSVモード情報
class CTsvModeInfo {

public:
void CalcTabLength(CDocLineMgr* cDocLineMgr); // タブ位置を再計算する
void CalcTabLength(LPCWSTR pLine); // タブ位置を再計算する(一行)
Expand Down
1 change: 0 additions & 1 deletion sakura_core/env/CFileNameManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,6 @@ bool CFileNameManager::GetMenuFullLabel(
ret = auto_snprintf_s( pszOutput, nBuffSize, LS(STR_MENU_UNKOWN), szAccKey );
return 0 < ret;
}else if( pfi->m_bIsGrep ){

GetAccessKeyLabelByIndex( szAccKey, bEspaceAmp, index, bAccKeyZeroOrigin );
//pfi->m_szGrepKeyShort → cmemDes
CNativeW cmemDes;
Expand Down
1 change: 0 additions & 1 deletion sakura_core/env/CShareData.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -938,7 +938,6 @@ BOOL CShareData::IsPathOpened( const TCHAR* pszPath, HWND* phwndOwner )
BOOL CShareData::ActiveAlreadyOpenedWindow( const TCHAR* pszPath, HWND* phwndOwner, ECodeType nCharCode )
{
if( IsPathOpened( pszPath, phwndOwner ) ){

//文字コードの一致確認
EditInfo* pfi;
::SendMessageAny( *phwndOwner, MYWM_GETFILEINFO, 0, 0 );
Expand Down
1 change: 0 additions & 1 deletion sakura_core/extmodule/CMigemo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,6 @@ int CMigemo::migemo_is_enable()
int CMigemo::migemo_load_all()
{
if( !migemo_is_enable()){

TCHAR* szDict = GetDllShareData().m_Common.m_sHelper.m_szMigemoDict;
TCHAR path[MAX_PATH];
//char path2[MAX_PATH];
Expand Down
1 change: 0 additions & 1 deletion sakura_core/func/CFuncKeyWnd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,6 @@ LRESULT CFuncKeyWnd::DispatchEvent(
WORD wID;
HWND hwndCtl;
switch ( uMsg ){

case WM_TIMER: return OnTimer( hwnd, uMsg, wParam, lParam );
case WM_COMMAND: return OnCommand( hwnd, uMsg, wParam, lParam );
case WM_SIZE: return OnSize( hwnd, uMsg, wParam, lParam );
Expand Down
1 change: 0 additions & 1 deletion sakura_core/func/CFuncLookup.h
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ struct MacroRec {
機能,機能分類と位置,機能番号,文字列などの対応を集約する.
*/
class CFuncLookup {

public:
// Oct. 15, 2001 genta 引数追加
// 2007.11.02 ryoji 引数変更(CSMacroMgr->MacroRec)
Expand Down
1 change: 0 additions & 1 deletion sakura_core/func/Funccode.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -572,7 +572,6 @@ const int nsFuncCode::nFincListNumArrNum = _countof( nsFuncCode::pnFuncListNumAr
int FuncID_To_HelpContextID( EFunctionCode nFuncID )
{
switch( nFuncID ){

/* ファイル操作系 */
case F_FILENEW: return HLP000025; //新規作成
case F_FILENEW_NEWWINDOW: return HLP000339; //新規ウインドウで開く
Expand Down
1 change: 0 additions & 1 deletion sakura_core/print/CPrintPreview.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2100,7 +2100,6 @@ INT_PTR CPrintPreview::DispatchEvent_PPB(
WORD wID;

switch( uMsg ){

case WM_INITDIALOG:
::EnableWindow( ::GetDlgItem(hwndDlg, IDC_CHECK_ANTIALIAS), TRUE );
return TRUE;
Expand Down
1 change: 0 additions & 1 deletion sakura_core/prop/CPropComBackup.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@ INT_PTR CPropBackup::DispatchEvent( HWND hwndDlg, UINT uMsg, WPARAM wParam, LPAR
// int nCharChars;

switch( uMsg ){

case WM_INITDIALOG:
/* ダイアログデータの設定 Backup */
SetData( hwndDlg );
Expand Down
1 change: 0 additions & 1 deletion sakura_core/prop/CPropComEdit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ INT_PTR CPropEdit::DispatchEvent(
// LPDRAWITEMSTRUCT pDis;

switch( uMsg ){

case WM_INITDIALOG:
EditCtl_LimitText( ::GetDlgItem( hwndDlg, IDC_EDIT_FILEOPENDIR ), _MAX_PATH - 1 );
/* ダイアログデータの設定 Edit */
Expand Down
1 change: 0 additions & 1 deletion sakura_core/prop/CPropComFileName.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ INT_PTR CPropFileName::DispatchEvent( HWND hwndDlg, UINT uMsg, WPARAM wParam, LP
TCHAR szTo[_MAX_PATH];

switch( uMsg ){

case WM_INITDIALOG:
{
RECT rc;
Expand Down
2 changes: 0 additions & 2 deletions sakura_core/prop/CPropComGeneral.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@ INT_PTR CPropGeneral::DispatchEvent(
// LPDRAWITEMSTRUCT pDis;

switch( uMsg ){

case WM_INITDIALOG:
/* ダイアログデータの設定 General */
SetData( hwndDlg );
Expand All @@ -109,7 +108,6 @@ INT_PTR CPropGeneral::DispatchEvent(
/* ボタン/チェックボックスがクリックされた */
case BN_CLICKED:
switch( wID ){

case IDC_CHECK_USETRAYICON: /* タスクトレイを使う */
// From Here 2001.12.03 hor
// 操作しにくいって評判だったのでタスクトレイ関係のEnable制御をやめました
Expand Down
1 change: 0 additions & 1 deletion sakura_core/prop/CPropComGrep.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ INT_PTR CPropGrep::DispatchEvent( HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM
// LPDRAWITEMSTRUCT pDis;

switch( uMsg ){

case WM_INITDIALOG:
/* ダイアログデータの設定 Grep */
SetData( hwndDlg );
Expand Down
2 changes: 0 additions & 2 deletions sakura_core/prop/CPropComMacro.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,6 @@ INT_PTR CPropMacro::DispatchEvent( HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARA
WORD wID;

switch( uMsg ){

case WM_INITDIALOG:
/* ダイアログデータの設定 Macro */
InitDialog( hwndDlg );
Expand Down Expand Up @@ -387,7 +386,6 @@ void CPropMacro::InitDialog( HWND hwndDlg )
int width = rc.right - rc.left - ::GetSystemMetrics(SM_CXHSCROLL);

for( pos = 0; pos < _countof( ColumnList ); ++pos ){

memset_raw( &sColumn, 0, sizeof( sColumn ));
sColumn.mask = LVCF_TEXT | LVCF_WIDTH | LVCF_SUBITEM | LVCF_FMT;
sColumn.pszText = const_cast<TCHAR*>(LS(ColumnList[pos].titleId));
Expand Down
3 changes: 0 additions & 3 deletions sakura_core/prop/CPropComPlugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@ INT_PTR CPropPlugin::DispatchEvent( HWND hwndDlg, UINT uMsg, WPARAM wParam, LPAR
WORD wID;

switch( uMsg ){

case WM_INITDIALOG:
/* ダイアログデータの設定 Plugin */
InitDialog( hwndDlg );
Expand Down Expand Up @@ -205,7 +204,6 @@ INT_PTR CPropPlugin::DispatchEvent( HWND hwndDlg, UINT uMsg, WPARAM wParam, LPAR
HWND hListView = ::GetDlgItem( hwndDlg, IDC_PLUGINLIST );
int sel = ListView_GetNextItem( hListView, -1, LVNI_SELECTED );
if( sel >= 0 ){

if( MYMESSAGEBOX( hwndDlg, MB_YESNO, GSTR_APPNAME, LS(STR_PROPCOMPLG_DELETE), m_Common.m_sPlugin.m_PluginTable[sel].m_szName ) == IDYES ){
CPluginManager::getInstance()->UninstallPlugin( m_Common, sel );
SetData_LIST( hwndDlg );
Expand Down Expand Up @@ -478,7 +476,6 @@ void CPropPlugin::InitDialog( HWND hwndDlg )
int width = rc.right - rc.left;

for( pos = 0; pos < _countof( ColumnList ); ++pos ){

memset_raw( &sColumn, 0, sizeof( sColumn ));
sColumn.mask = LVCF_TEXT | LVCF_WIDTH | LVCF_SUBITEM | LVCF_FMT;
sColumn.pszText = const_cast<TCHAR*>(LS(ColumnList[pos].titleId));
Expand Down
1 change: 0 additions & 1 deletion sakura_core/prop/CPropComStatusbar.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ INT_PTR CPropStatusbar::DispatchEvent(
NMHDR* pNMHDR;

switch( uMsg ){

case WM_INITDIALOG:
/* ダイアログデータの設定 */
SetData( hwndDlg );
Expand Down
1 change: 0 additions & 1 deletion sakura_core/prop/CPropComTab.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,6 @@ INT_PTR CPropTab::DispatchEvent( HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM
// int idCtrl;

switch( uMsg ){

case WM_INITDIALOG:
/* ダイアログデータの設定 Tab */
SetData( hwndDlg );
Expand Down
1 change: 0 additions & 1 deletion sakura_core/prop/CPropComToolbar.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -559,7 +559,6 @@ void CPropToolbar::DrawToolBarItemList( DRAWITEMSTRUCT* pDis )

if( (int)pDis->itemID < 0 ){
}else{

//@@@ 2002.01.03 YAZAKI m_tbMyButtonなどをCShareDataからCMenuDrawerへ移動したことによる修正。
// tbb = m_cShareData.m_tbMyButton[pDis->itemData];
// tbb = m_pcMenuDrawer->m_tbMyButton[pDis->itemData];
Expand Down
1 change: 0 additions & 1 deletion sakura_core/prop/CPropComWin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,6 @@ INT_PTR CPropWin::DispatchEvent(
int nVal; //Sept.21, 2000 JEPRO スピン要素を加えたので復活させた

switch( uMsg ){

case WM_INITDIALOG:
/* ダイアログデータの設定 Window */
SetData( hwndDlg );
Expand Down
1 change: 0 additions & 1 deletion sakura_core/typeprop/CPropTypes.h
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ enum PropTypeSheetOrder {
@date 2002.2.17 YAZAKI CShareDataのインスタンスは、CProcessにひとつあるのみ。
*/
class CPropTypes{

public:
//生成と破棄
CPropTypes();
Expand Down
2 changes: 0 additions & 2 deletions sakura_core/typeprop/CPropTypesColor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,6 @@ INT_PTR CPropTypesColor::DispatchEvent(
idCtrl = (UINT) wParam; /* コントロールのID */
pDis = (LPDRAWITEMSTRUCT) lParam; /* 項目描画情報 */
switch( idCtrl ){

case IDC_BUTTON_TEXTCOLOR: /* テキスト色 */
DrawColorButton( pDis, m_Types.m_ColorInfoArr[m_nCurrentColorType].m_sColorAttr.m_cTEXT );
return TRUE;
Expand Down Expand Up @@ -895,7 +894,6 @@ void CPropTypesColor::DrawColorButton( DRAWITEMSTRUCT* pDis, COLORREF cColor )
// rc.right -= 11;

if( pDis->itemState & ODS_SELECTED ){

gr.SetPen(cBtnDkShadow);
::MoveToEx( gr, 0, pDis->rcItem.bottom - 2, NULL );
::LineTo( gr, 0, 0 );
Expand Down
1 change: 0 additions & 1 deletion sakura_core/typeprop/CPropTypesScreen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,6 @@ INT_PTR CPropTypesScreen::DispatchEvent(
int nVal;

switch( uMsg ){

case WM_INITDIALOG:
m_hwndThis = hwndDlg;
/* ダイアログデータの設定 Screen */
Expand Down
Loading

0 comments on commit c67633b

Please sign in to comment.