Skip to content

Commit

Permalink
COM error handled and copyright update
Browse files Browse the repository at this point in the history
  • Loading branch information
WetHat committed Jan 27, 2023
1 parent 935687d commit 5b4cb62
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
3 changes: 3 additions & 0 deletions OneNoteTaggingKit/Logger.cs
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,9 @@ internal static void ShowGenericErrorBox(string message, Exception ex)
case 0x80042030:
troubleshootingpage = "0x80042030";
break;
case 0x80042014:
troubleshootingpage = "0x80042014";
break;
}
}
try
Expand Down
2 changes: 1 addition & 1 deletion OneNoteTaggingKit/Properties/Resources.resx
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@
<value>OneNote Tagging Kit</value>
</data>
<data name="TaggingKit_About_Copyright" xml:space="preserve">
<value>Copyright (c) 2013-2022 WetHat Lab</value>
<value>Copyright (c) 2013-2023 WetHat Lab</value>
</data>
<data name="TaggingKit_About_Description" xml:space="preserve">
<value>OneNote Add-In for flexible tagging of OneNote pages</value>
Expand Down
2 changes: 1 addition & 1 deletion OneNoteTaggingKit/Properties/Resources.zh.resx
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@
<value>OneNote Tagging Kit</value>
</data>
<data name="TaggingKit_About_Copyright" xml:space="preserve">
<value>Copyright (c) 2013-2022 WetHat Lab</value>
<value>Copyright (c) 2013-2023 WetHat Lab</value>
</data>
<data name="TaggingKit_About_Description" xml:space="preserve">
<value>OneNote页面标签插件</value>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
# TagInputBox.TagInput event

Routed event fired for changes to the [`TagNames`](./TagNames.md) property
# TagInputBox.tagInput field

```csharp
public event TagInputEventHandler TagInput;
internal TextBox tagInput;
```

## See Also

* delegate [TagInputEventHandler](../../WetHatLab.OneNote.TaggingKit.common/TagInputEventHandler.md)
* class [TagInputBox](../TagInputBox.md)
* namespace [WetHatLab.OneNote.TaggingKit.common.ui](../../OneNoteTaggingKit.md)

Expand Down

0 comments on commit 5b4cb62

Please sign in to comment.