aboutsummaryrefslogtreecommitdiffstats
path: root/src/net/java/sip/communicator/impl/packetlogging
diff options
context:
space:
mode:
authorLyubomir Marinov <lyubomir.marinov@jitsi.org>2010-12-08 21:24:17 +0000
committerLyubomir Marinov <lyubomir.marinov@jitsi.org>2010-12-08 21:24:17 +0000
commit8d010f1bb3e47e1098b0d842e73dc96dd18ca91c (patch)
tree78dde0c234ca2d2d2b72bd92d8e38e37529cbefe /src/net/java/sip/communicator/impl/packetlogging
parentc44db17d26c3234e29fbbd35999578ba35c03a38 (diff)
downloadjitsi-8d010f1bb3e47e1098b0d842e73dc96dd18ca91c.zip
jitsi-8d010f1bb3e47e1098b0d842e73dc96dd18ca91c.tar.gz
jitsi-8d010f1bb3e47e1098b0d842e73dc96dd18ca91c.tar.bz2
Fixes the backgrounds of the check boxes and radio buttons on the Security > Call, Advanced > Packet Logging and Advanced > Provisioning pages in Tools > Options on Windows which appear non-transparent and thus violate the "blue" theme.
Diffstat (limited to 'src/net/java/sip/communicator/impl/packetlogging')
-rw-r--r--src/net/java/sip/communicator/impl/packetlogging/PacketLoggingConfigForm.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/net/java/sip/communicator/impl/packetlogging/PacketLoggingConfigForm.java b/src/net/java/sip/communicator/impl/packetlogging/PacketLoggingConfigForm.java
index 4301f95..342c55f 100644
--- a/src/net/java/sip/communicator/impl/packetlogging/PacketLoggingConfigForm.java
+++ b/src/net/java/sip/communicator/impl/packetlogging/PacketLoggingConfigForm.java
@@ -87,27 +87,27 @@ public class PacketLoggingConfigForm
ResourceManagementService resources =
PacketLoggingActivator.getResourceService();
- enableCheckBox = new JCheckBox(
+ enableCheckBox = new SIPCommCheckBox(
resources.getI18NString("impl.packetlogging.ENABLE_DISABLE"));
enableCheckBox.addActionListener(this);
- sipProtocolCheckBox = new JCheckBox(
+ sipProtocolCheckBox = new SIPCommCheckBox(
resources.getI18NString("plugin.sipaccregwizz.PROTOCOL_NAME"));
sipProtocolCheckBox.addActionListener(this);
- jabberProtocolCheckBox = new JCheckBox(
+ jabberProtocolCheckBox = new SIPCommCheckBox(
resources.getI18NString("plugin.jabberaccregwizz.PROTOCOL_NAME"));
jabberProtocolCheckBox.addActionListener(this);
String rtpDescription = resources.getI18NString(
"impl.packetlogging.PACKET_LOGGING_RTP_DESCRIPTION");
- rtpProtocolCheckBox = new JCheckBox(
+ rtpProtocolCheckBox = new SIPCommCheckBox(
resources.getI18NString("impl.packetlogging.PACKET_LOGGING_RTP")
+ " " + rtpDescription);
rtpProtocolCheckBox.addActionListener(this);
rtpProtocolCheckBox.setToolTipText(rtpDescription);
- ice4jProtocolCheckBox = new JCheckBox(
+ ice4jProtocolCheckBox = new SIPCommCheckBox(
resources.getI18NString("impl.packetlogging.PACKET_LOGGING_ICE4J"));
ice4jProtocolCheckBox.addActionListener(this);