Skip to content

Commit

Permalink
Refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
darbyjohnston committed Aug 18, 2024
1 parent e518130 commit fbf1ac8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/toucan/TimelineGraph.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ namespace toucan
TimelineGraph::~TimelineGraph()
{}

const IMATH_NAMESPACE::V2d& TimelineGraph::getImageSize() const
IMATH_NAMESPACE::V2d TimelineGraph::getImageSize() const
{
return _imageSize;
}
Expand Down
2 changes: 1 addition & 1 deletion lib/toucan/TimelineGraph.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ namespace toucan
~TimelineGraph();

//! Get the timeline image size.
const IMATH_NAMESPACE::V2d& getImageSize() const;
IMATH_NAMESPACE::V2d getImageSize() const;

//! Get an image graph for the given time. This function is thread safe.
std::shared_ptr<IImageNode> exec(const OTIO_NS::RationalTime&) const;
Expand Down

0 comments on commit fbf1ac8

Please sign in to comment.