summaryrefslogtreecommitdiff
path: root/plugins/SendScreenshotPlus/src/Main.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2025-05-13 13:16:41 +0300
committerGeorge Hazan <george.hazan@gmail.com>2025-05-13 13:16:41 +0300
commit632700c7828d2b9667c8dc8bc3403f910b51e158 (patch)
treea0eebd39c1a49e9cf51f4fb8425bdf9d3e73fbdb /plugins/SendScreenshotPlus/src/Main.cpp
parentc42f503c8e3c1e6e4a7689b3b3cff17d2722c9ac (diff)
fixes #5017 (SendSS: UploadPie not working) + some code formatting
Diffstat (limited to 'plugins/SendScreenshotPlus/src/Main.cpp')
-rw-r--r--plugins/SendScreenshotPlus/src/Main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/SendScreenshotPlus/src/Main.cpp b/plugins/SendScreenshotPlus/src/Main.cpp
index e082cce873..307b135394 100644
--- a/plugins/SendScreenshotPlus/src/Main.cpp
+++ b/plugins/SendScreenshotPlus/src/Main.cpp
@@ -67,7 +67,7 @@ IconItem ICONS_BTN[ICO_BTN_END_] =
};
static HANDLE m_hFolderScreenshot = nullptr;
-wchar_t* GetCustomPath()
+wchar_t *GetCustomPath()
{
wchar_t *pszPath = Utils_ReplaceVarsW(L"%miranda_userdata%\\Screenshots");
if (m_hFolderScreenshot) {
@@ -280,7 +280,7 @@ int CMPlugin::Load()
g_plugin.registerIcon(MODULENAME "/" LPGEN("Buttons"), ICONS_BTN, MODULENAME);
// services
-#define srv_reg(name) CreateServiceFunction(MODULENAME "/" #name, service_##name);
+ #define srv_reg(name) CreateServiceFunction(MODULENAME "/" #name, service_##name);
srv_reg(OpenCaptureDialog);
srv_reg(SendDesktop);
srv_reg(Send2ImageShack);