Skip to content

Commit

Permalink
Compat update for String rename
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanKarpinski committed May 15, 2016
1 parent 614051f commit 4c6fca4
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/ImageView.jl
Expand Up @@ -14,7 +14,7 @@ using Cairo
using Tk
using Colors
using Images
using Compat
using Compat; import Compat.String

import Base: parent, show, delete!, empty!

Expand Down
10 changes: 5 additions & 5 deletions src/annotations.jl
Expand Up @@ -48,13 +48,13 @@ type AnnotationText
t::Float64
string::AbstractString
color::Color
fontfamily::ASCIIString
fontoptions::ASCIIString
fontfamily::String
fontoptions::String
fontsize::Integer
fontdesc::ASCIIString
fontdesc::String
angle::Float64
halign::ASCIIString
valign::ASCIIString
halign::String
valign::String
markup::Bool
scale::Bool
end
Expand Down
2 changes: 1 addition & 1 deletion src/contrast.jl
Expand Up @@ -6,7 +6,7 @@ using Tk
using Winston
using Images
import Colors.Fractional
using Compat
using Compat; import Compat.String

type ContrastSettings
min
Expand Down
2 changes: 1 addition & 1 deletion test/test4d.jl
@@ -1,5 +1,5 @@
import Images
using Compat
using Compat; import Compat.String

# Create a cone in 3d that changes color over time
sz = [201, 301, 31]
Expand Down

0 comments on commit 4c6fca4

Please sign in to comment.