aboutsummaryrefslogtreecommitdiffhomepage
path: root/qt/ScintillaEditBase/PlatQt.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'qt/ScintillaEditBase/PlatQt.cpp')
-rw-r--r--qt/ScintillaEditBase/PlatQt.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/qt/ScintillaEditBase/PlatQt.cpp b/qt/ScintillaEditBase/PlatQt.cpp
index 783bdeea8..286441be9 100644
--- a/qt/ScintillaEditBase/PlatQt.cpp
+++ b/qt/ScintillaEditBase/PlatQt.cpp
@@ -1284,16 +1284,16 @@ void Menu::Show(Point pt, const Window & /*w*/)
//----------------------------------------------------------------------
-ColourDesired Platform::Chrome()
+ColourAlpha Platform::Chrome()
{
QColor c(Qt::gray);
- return ColourDesired(c.red(), c.green(), c.blue());
+ return ColourAlpha(c.red(), c.green(), c.blue());
}
-ColourDesired Platform::ChromeHighlight()
+ColourAlpha Platform::ChromeHighlight()
{
QColor c(Qt::lightGray);
- return ColourDesired(c.red(), c.green(), c.blue());
+ return ColourAlpha(c.red(), c.green(), c.blue());
}
const char *Platform::DefaultFont()