-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #469 from micro-manager/fix-encoding
Fix character encoding in source files
- Loading branch information
Showing
57 changed files
with
506 additions
and
471 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
name: Misc checks | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
check-utf8-encoding: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- run: ./tools/check-utf8.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
// XY Stage | ||
// Z Stage | ||
// | ||
// AUTHOR: Johan Henriksson, [email protected], derived from Märzhauser adapter | ||
// AUTHOR: Johan Henriksson, [email protected], derived from Märzhauser adapter | ||
// COPYRIGHT: Johan Henriksson, 2010 | ||
// LICENSE: This library is free software; you can redistribute it and/or | ||
// modify it under the terms of the GNU Lesser General Public | ||
|
@@ -345,7 +345,7 @@ int XYStage::Initialize() | |
return ret; | ||
SetPropertyLimits("Speed [mm/s]", 0.001, 100.0); // mm/s | ||
|
||
// Accel (Acceleration (in m/s²) | ||
// Accel (Acceleration (in m/s²) | ||
// ----- | ||
pAct = new CPropertyAction (this, &XYStage::OnAccel); | ||
// TODO: get current Acceleration from the controller | ||
|
@@ -406,7 +406,7 @@ bool XYStage::Busy() | |
|
||
|
||
/** | ||
* Returns current position in µm. | ||
* Returns current position in µm. | ||
*/ | ||
int XYStage::GetPositionUm(double& x, double& y) | ||
{ | ||
|
@@ -439,7 +439,7 @@ int ret; | |
|
||
|
||
/** | ||
* Sets position in µm | ||
* Sets position in µm | ||
*/ | ||
int XYStage::SetPositionUm(double x, double y) | ||
{ | ||
|
Oops, something went wrong.