mirror of
https://git.freebsd.org/ports.git
synced 2025-06-09 14:50:31 -04:00
- Google droped SCIM support from this version. japanese/scim-mozc will be removed in the future.
14 lines
480 B
C++
14 lines
480 B
C++
--- gui/about_dialog/about_dialog.cc.orig 2012-09-07 10:21:29.218021887 +0900
|
|
+++ gui/about_dialog/about_dialog.cc 2012-01-29 13:49:18.542805000 +0900
|
|
@@ -119,7 +119,11 @@
|
|
SetLabelText(label_terms);
|
|
SetLabelText(label_credits);
|
|
|
|
+#ifdef __FreeBSD__
|
|
+ product_image_.reset(new QImage("@@LOCALBASE@@/share/mozc-tool/icons/product_logo.png"));
|
|
+#else
|
|
product_image_.reset(new QImage(":/product_logo.png"));
|
|
+#endif
|
|
}
|
|
|
|
void AboutDialog::paintEvent(QPaintEvent *event) {
|