Changeset 344

Show
Ignore:
Timestamp:
10/25/07 01:59:08 (15 months ago)
Author:
tomoyo
Message:

* XP向けの音量アップを間違っていたのを修正

Location:
Apple Wireless Keyboard Helper/trunk
Files:
4 modified

Legend:

Unmodified
Added
Removed
  • Apple Wireless Keyboard Helper/trunk/MasterVolumeControl/MasterVolumeControl.cs

    r324 r344  
    4747        { 
    4848            MixerLine masterLine = GetMasterLine(); 
    49             masterLine.Volume = Math.Min(masterLine.Volume - masterLine.VolumeMax / 10, masterLine.VolumeMax); 
     49            masterLine.Volume = Math.Min(masterLine.Volume + masterLine.VolumeMax / 10, masterLine.VolumeMax); 
    5050        } 
    5151 
  • Apple Wireless Keyboard Helper/trunk/MasterVolumeControl/MasterVolumeControlLibrary.csproj

    r324 r344  
    2727    <ErrorReport>prompt</ErrorReport> 
    2828    <WarningLevel>4</WarningLevel> 
     29  </PropertyGroup> 
     30  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> 
     31    <DebugSymbols>true</DebugSymbols> 
     32    <OutputPath>bin\x86\Debug\</OutputPath> 
     33    <DefineConstants>DEBUG;TRACE</DefineConstants> 
     34    <DebugType>full</DebugType> 
     35    <PlatformTarget>x86</PlatformTarget> 
     36    <CodeAnalysisRuleAssemblies>C:\Program Files (x86)\Microsoft Visual Studio 8\Team Tools\Static Analysis Tools\FxCop\\rules</CodeAnalysisRuleAssemblies> 
     37    <CodeAnalysisUseTypeNameInSuppression>true</CodeAnalysisUseTypeNameInSuppression> 
     38    <CodeAnalysisModuleSuppressionsFile>GlobalSuppressions.cs</CodeAnalysisModuleSuppressionsFile> 
     39    <ErrorReport>prompt</ErrorReport> 
     40  </PropertyGroup> 
     41  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> 
     42    <OutputPath>bin\x86\Release\</OutputPath> 
     43    <DefineConstants>TRACE</DefineConstants> 
     44    <Optimize>true</Optimize> 
     45    <DebugType>pdbonly</DebugType> 
     46    <PlatformTarget>x86</PlatformTarget> 
     47    <CodeAnalysisRuleAssemblies>C:\Program Files (x86)\Microsoft Visual Studio 8\Team Tools\Static Analysis Tools\FxCop\\rules</CodeAnalysisRuleAssemblies> 
     48    <CodeAnalysisUseTypeNameInSuppression>true</CodeAnalysisUseTypeNameInSuppression> 
     49    <CodeAnalysisModuleSuppressionsFile>GlobalSuppressions.cs</CodeAnalysisModuleSuppressionsFile> 
     50    <ErrorReport>prompt</ErrorReport> 
    2951  </PropertyGroup> 
    3052  <ItemGroup> 
  • Apple Wireless Keyboard Helper/trunk/Misuzilla.Applications.AppleWirelessKeyboardHelper.sln

    r342 r344  
    33# Visual Studio 2005 
    44Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Misuzilla.Applications.AppleWirelessKeyboardHelper", "Misuzilla.Applications.AppleWirelessKeyboardHelper\Misuzilla.Applications.AppleWirelessKeyboardHelper.csproj", "{A4D4C6B9-6641-4B3D-A023-27C8EC699F9C}" 
     5        ProjectSection(WebsiteProperties) = preProject 
     6                Debug.AspNetCompiler.Debug = "True" 
     7                Release.AspNetCompiler.Debug = "False" 
     8        EndProjectSection 
    59EndProject 
    610Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MasterVolumeControlLibrary", "MasterVolumeControl\MasterVolumeControlLibrary.csproj", "{8CE671E0-E48E-4562-8C5F-253125D9489B}" 
     11        ProjectSection(WebsiteProperties) = preProject 
     12                Debug.AspNetCompiler.Debug = "True" 
     13                Release.AspNetCompiler.Debug = "False" 
     14        EndProjectSection 
    715EndProject 
    816Global 
     
    1422        EndGlobalSection 
    1523        GlobalSection(ProjectConfigurationPlatforms) = postSolution 
    16                 {A4D4C6B9-6641-4B3D-A023-27C8EC699F9C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 
    17                 {A4D4C6B9-6641-4B3D-A023-27C8EC699F9C}.Debug|Any CPU.Build.0 = Debug|Any CPU 
     24                {A4D4C6B9-6641-4B3D-A023-27C8EC699F9C}.Debug|Any CPU.ActiveCfg = Debug|x86 
     25                {A4D4C6B9-6641-4B3D-A023-27C8EC699F9C}.Debug|Any CPU.Build.0 = Debug|x86 
    1826                {A4D4C6B9-6641-4B3D-A023-27C8EC699F9C}.Debug|x86.ActiveCfg = Debug|x86 
    1927                {A4D4C6B9-6641-4B3D-A023-27C8EC699F9C}.Debug|x86.Build.0 = Debug|x86 
  • Apple Wireless Keyboard Helper/trunk/Misuzilla.Applications.AppleWirelessKeyboardHelper/Helper.cs

    r342 r344  
    135135                //else if ((Int32)wParam == Win32.WM_KEYUP || (Int32)wParam == Win32.WM_SYSKEYUP) // KEYUP 
    136136                //    OnFnKeyCombinationUp(CurrentKeyState, (Keys)keyEventStruct.wVk, keyEventStruct); 
    137                 return (IntPtr)1; 
     137                return IntPtr.Zero; 
    138138            } 
    139139            return Win32.CallNextHookEx(_hHook, nCode, wParam, lParam);