]> granicus.if.org Git - graphviz/commit
In gvedit, replaced `toAscii()` with `toLatin()`
authorErwin Janssen <erwinjanssen@outlook.com>
Tue, 6 Sep 2016 10:54:33 +0000 (12:54 +0200)
committerErwin Janssen <erwinjanssen@outlook.com>
Wed, 7 Sep 2016 10:59:12 +0000 (12:59 +0200)
commitf451bf33bae26fb774f9e9507072352d5085fdbc
tree75a87ca03cbc03e8f839fe8518b6acb3b180970b
parent6c9309da01ade9f33aa6a5ede6a334476a7b814c
In gvedit, replaced `toAscii()` with `toLatin()`

From the Qt documentation
(http://wiki.qt.io/Transition_from_Qt_4.x_to_Qt5#toAscii.28.29_and_fromAscii.28.29_Methods_are_deprecated):

toAscii() and fromAscii() Methods are deprecated

Replace all instances of

```
fromAscii()
toAscii()
```

to

```
fromLatin1()
toLatin1()
```
cmd/gvedit/csettings.cpp
cmd/gvedit/mainwindow.cpp