diff --git a/PowerEditor/src/WinControls/DockingWnd/Docking.h b/PowerEditor/src/WinControls/DockingWnd/Docking.h index ca9cd19d4..4e6b6c27e 100644 --- a/PowerEditor/src/WinControls/DockingWnd/Docking.h +++ b/PowerEditor/src/WinControls/DockingWnd/Docking.h @@ -1,5 +1,5 @@ // This file is part of Notepad++ project -// Copyright (C)2024 Don HO +// Copyright (C)2025 Don HO // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -48,18 +48,18 @@ struct tTbData { - HWND hClient = nullptr; // client Window Handle + HWND hClient = nullptr; // client Window Handle const wchar_t* pszName = nullptr; // name of plugin (shown in window) - int dlgID = 0; // a funcItem provides the function pointer to start a dialog. Please parse here these ID + int dlgID = 0; // a funcItem provides the function pointer to start a dialog. Please parse here these ID // user modifications - UINT uMask = 0; // mask params: look to above defines - HICON hIconTab = nullptr; // icon for tabs + UINT uMask = 0; // mask params: look to above defines + HICON hIconTab = nullptr; // icon for tabs const wchar_t* pszAddInfo = nullptr; // for plugin to display additional informations // internal data, do not use !!! - RECT rcFloat = {}; // floating position - int iPrevCont = 0; // stores the privious container (toggling between float and dock) + RECT rcFloat = {}; // floating position + int iPrevCont = 0; // stores the privious container (toggling between float and dock) const wchar_t* pszModuleName = nullptr; // it's the plugin file name. It's used to identify the plugin };