From 318b5aed7add7dafea941d0a2121ece35d34a3c9 Mon Sep 17 00:00:00 2001 From: dartraiden Date: Mon, 4 Dec 2017 21:09:51 +0300 Subject: BASS_interface: proper capitalization --- plugins/BASS_interface/src/Main.cpp | 12 ++++++------ plugins/BASS_interface/src/stdafx.h | 2 +- plugins/BASS_interface/src/version.h | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) (limited to 'plugins/BASS_interface/src') diff --git a/plugins/BASS_interface/src/Main.cpp b/plugins/BASS_interface/src/Main.cpp index 3363a4fb67..69145bd45a 100644 --- a/plugins/BASS_interface/src/Main.cpp +++ b/plugins/BASS_interface/src/Main.cpp @@ -190,7 +190,7 @@ INT_PTR CALLBACK OptionsProc(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lPara } else { DWORD bassver = BASS_GetVersion(); - mir_snwprintf(tmp, TranslateT("un4seen's bass version: %d.%d.%d.%d"), bassver >> 24, (bassver >> 16) & 0xff, (bassver >> 8) & 0xff, bassver & 0xff); + mir_snwprintf(tmp, TranslateT("Un4seen's BASS version: %d.%d.%d.%d"), bassver >> 24, (bassver >> 16) & 0xff, (bassver >> 8) & 0xff, bassver & 0xff); SetDlgItemText(hwndDlg, IDC_BASSVERSION, tmp); SendDlgItemMessage(hwndDlg, IDC_OUTDEVICE, CB_RESETCONTENT, 0, 0); @@ -304,7 +304,7 @@ INT_PTR CALLBACK OptionsProc(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lPara break; case IDC_GETBASS: - Utils_OpenUrl("http://www.un4seen.com/"); + Utils_OpenUrl("https://www.un4seen.com/"); break; } break; @@ -449,11 +449,11 @@ void CreateFrame() wndclass.lpszClassName = L"BassInterfaceFrame"; RegisterClass(&wndclass); - hwnd_plugin = CreateWindow(L"BassInterfaceFrame", TranslateT("Bass Interface"), + hwnd_plugin = CreateWindow(L"BassInterfaceFrame", TranslateT("BASS interface"), WS_CHILD | WS_CLIPCHILDREN, 0, 0, 10, 10, pcli->hwndContactList, nullptr, hInst, nullptr); CLISTFrame Frame = { sizeof(CLISTFrame) }; - Frame.tname = TranslateT("Bass Interface"); + Frame.tname = TranslateT("BASS interface"); Frame.hWnd = hwnd_plugin; Frame.align = alBottom; Frame.Flags = F_UNICODE | F_VISIBLE | F_SHOWTB | F_SHOWTBTIP; @@ -540,14 +540,14 @@ int OnFoldersChanged(WPARAM, LPARAM) int OnModulesLoaded(WPARAM, LPARAM) { - if (hBASSFolder = FoldersRegisterCustomPathT(LPGEN("Bass Interface"), LPGEN("Bass library"), PLUGINS_PATHT L"\\Bass")) { + if (hBASSFolder = FoldersRegisterCustomPathT(LPGEN("Bass Interface"), LPGEN("Bass library"), PLUGINS_PATHT L"\\BASS")) { FoldersGetCustomPathT(hBASSFolder, CurrBassPath, MAX_PATH, L""); mir_wstrcat(CurrBassPath, L"\\bass.dll"); } else { DBVARIANT dbv; if (db_get_ws(NULL, ModuleName, OPT_BASSPATH, &dbv)) { - mir_wstrncpy(CurrBassPath, VARSW(L"Plugins\\Bass\\bass.dll"), _countof(CurrBassPath)); + mir_wstrncpy(CurrBassPath, VARSW(L"Plugins\\BASS\\bass.dll"), _countof(CurrBassPath)); db_set_ws(NULL, ModuleName, OPT_BASSPATH, CurrBassPath); } else { diff --git a/plugins/BASS_interface/src/stdafx.h b/plugins/BASS_interface/src/stdafx.h index f09b58d36c..e1e9a88231 100644 --- a/plugins/BASS_interface/src/stdafx.h +++ b/plugins/BASS_interface/src/stdafx.h @@ -23,7 +23,7 @@ Copyright (C) 2010, 2011 tico-tico #include "resource.h" #include "version.h" -#define ModuleName LPGEN("Bass Interface") +#define ModuleName LPGEN("BASS interface") #define OPT_VOLUME "Volume" #define OPT_BASSPATH "PathToDll" diff --git a/plugins/BASS_interface/src/version.h b/plugins/BASS_interface/src/version.h index 16d349601c..bff0a5501c 100644 --- a/plugins/BASS_interface/src/version.h +++ b/plugins/BASS_interface/src/version.h @@ -7,7 +7,7 @@ #define __PLUGIN_NAME "BASS interface" #define __FILENAME "BASS_interface.dll" -#define __DESCRIPTION "un4seen's BASS interface Miranda NG plugin." +#define __DESCRIPTION "Un4seen's BASS interface Miranda NG plugin." #define __AUTHOR "tico-tico" #define __AUTHOREMAIL "" #define __AUTHORWEB "https://miranda-ng.org/p/BASS_interface/" -- cgit v1.2.3