OSDN Git Service

Fix bugs of Host List dialog.
authors_kawamoto <s_kawamoto@users.sourceforge.jp>
Sat, 18 Apr 2015 03:34:04 +0000 (12:34 +0900)
committers_kawamoto <s_kawamoto@users.sourceforge.jp>
Sat, 18 Apr 2015 03:34:04 +0000 (12:34 +0900)
FFFTP_Eng_Release/FFFTP.exe
FFFTP_Eng_Release_64/FFFTP.exe
Release/FFFTP.exe
Release_64/FFFTP.exe
common.h
hostman.c

index a1ea0f1..b06d0ad 100644 (file)
Binary files a/FFFTP_Eng_Release/FFFTP.exe and b/FFFTP_Eng_Release/FFFTP.exe differ
index f09e0c3..f43a74f 100644 (file)
Binary files a/FFFTP_Eng_Release_64/FFFTP.exe and b/FFFTP_Eng_Release_64/FFFTP.exe differ
index 1a1763c..14b9d1c 100644 (file)
Binary files a/Release/FFFTP.exe and b/Release/FFFTP.exe differ
index d096d7f..4d5e84b 100644 (file)
Binary files a/Release_64/FFFTP.exe and b/Release_64/FFFTP.exe differ
index 237991c..cf13762 100644 (file)
--- a/common.h
+++ b/common.h
@@ -1334,9 +1334,13 @@ typedef struct {
 /*===== ダイアログボックス変更処理用 =====*/\r
 \r
 typedef struct {\r
-       int HorMoveList[10];    /* 水平に動かす部品のリスト */\r
-       int VarMoveList[10];    /* 垂直に動かす部品のリスト */\r
-       int ResizeList[10];             /* サイズ変更する部品のリスト */\r
+       // ホスト共通設定機能\r
+//     int HorMoveList[10];    /* 水平に動かす部品のリスト */\r
+//     int VarMoveList[10];    /* 垂直に動かす部品のリスト */\r
+//     int ResizeList[10];             /* サイズ変更する部品のリスト */\r
+       int HorMoveList[16];    /* 水平に動かす部品のリスト */\r
+       int VarMoveList[16];    /* 垂直に動かす部品のリスト */\r
+       int ResizeList[16];             /* サイズ変更する部品のリスト */\r
        SIZE MinSize;                   /* 最少サイズ */\r
        SIZE CurSize;                   /* 現在のサイズ */\r
 } DIALOGSIZE;\r
index 0cbd2e3..a892ec5 100644 (file)
--- a/hostman.c
+++ b/hostman.c
@@ -153,7 +153,9 @@ int SelectHost(int Type)
 static INT_PTR CALLBACK SelectHostProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)\r
 {\r
        static DIALOGSIZE DlgSize = {\r
-               { HOST_NEW, HOST_FOLDER, HOST_SET, HOST_COPY, HOST_DEL, HOST_DOWN, HOST_UP, IDHELP, HOST_SIZEGRIP, -1 },\r
+               // ホスト共通設定機能\r
+//             { HOST_NEW, HOST_FOLDER, HOST_SET, HOST_COPY, HOST_DEL, HOST_DOWN, HOST_UP, IDHELP, HOST_SIZEGRIP, -1 },\r
+               { HOST_NEW, HOST_FOLDER, HOST_SET, HOST_COPY, HOST_DEL, HOST_DOWN, HOST_UP, HOST_SET_DEFAULT, IDHELP, HOST_SIZEGRIP, -1 },\r
                { IDOK, IDCANCEL, HOST_SIZEGRIP, -1 },\r
                { HOST_LIST, -1 },\r
                { 0, 0 },\r