1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-08 17:46:25 +01:00

Fixed some warnings.

This commit is contained in:
james.k.crook@gmail.com
2014-10-09 22:12:51 +00:00
parent 3da033cdb7
commit 14e0380444
4 changed files with 10 additions and 10 deletions

View File

@@ -394,9 +394,9 @@ bool ScreenshotCommand::Apply(CommandExecutionContext context)
else if (captureMode.IsSameAs(wxT("trackpanel")))
{
TrackPanel *panel = context.proj->mTrackPanel;
AdornedRulerPanel *ruler = panel->mRuler;
//AdornedRulerPanel *ruler = panel->mRuler;
int h = ruler->GetRulerHeight();
int h = panel->mRuler->GetRulerHeight();
int x = 0, y = -h;
int width, height;