Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2008-04-27 22:09:45 +0000
committerslewis2008-04-27 22:09:45 +0000
commitfd930cbc5df5d5e094d66ab6d08a7f2b62606c82 (patch)
treeac165d2d6a2a9f72afc2e0623f1d2e179b814772 /providers/bundles/org.eclipse.ecf.provider.bittorrent.ui
parent1543fc51f7680398269086b4675dd649c9becfec (diff)
downloadorg.eclipse.ecf-fd930cbc5df5d5e094d66ab6d08a7f2b62606c82.tar.gz
org.eclipse.ecf-fd930cbc5df5d5e094d66ab6d08a7f2b62606c82.tar.xz
org.eclipse.ecf-fd930cbc5df5d5e094d66ab6d08a7f2b62606c82.zip
Added file wizard download icon for bittorrent wizard dialogv20080428-0800
Diffstat (limited to 'providers/bundles/org.eclipse.ecf.provider.bittorrent.ui')
-rw-r--r--providers/bundles/org.eclipse.ecf.provider.bittorrent.ui/build.properties3
-rw-r--r--providers/bundles/org.eclipse.ecf.provider.bittorrent.ui/icons/filewiz_download.pngbin0 -> 6789 bytes
-rw-r--r--providers/bundles/org.eclipse.ecf.provider.bittorrent.ui/src/org/eclipse/ecf/internal/provider/bittorrent/ui/BitTorrentConnectWizardPage.java1
3 files changed, 3 insertions, 1 deletions
diff --git a/providers/bundles/org.eclipse.ecf.provider.bittorrent.ui/build.properties b/providers/bundles/org.eclipse.ecf.provider.bittorrent.ui/build.properties
index 8f0d48b78..c3dfda437 100644
--- a/providers/bundles/org.eclipse.ecf.provider.bittorrent.ui/build.properties
+++ b/providers/bundles/org.eclipse.ecf.provider.bittorrent.ui/build.properties
@@ -20,4 +20,5 @@ bin.includes = META-INF/,\
src.includes = about.html,\
META-INF/,\
plugin.properties,\
- plugin.xml
+ plugin.xml,\
+ icons/
diff --git a/providers/bundles/org.eclipse.ecf.provider.bittorrent.ui/icons/filewiz_download.png b/providers/bundles/org.eclipse.ecf.provider.bittorrent.ui/icons/filewiz_download.png
new file mode 100644
index 000000000..35f30dd63
--- /dev/null
+++ b/providers/bundles/org.eclipse.ecf.provider.bittorrent.ui/icons/filewiz_download.png
Binary files differ
diff --git a/providers/bundles/org.eclipse.ecf.provider.bittorrent.ui/src/org/eclipse/ecf/internal/provider/bittorrent/ui/BitTorrentConnectWizardPage.java b/providers/bundles/org.eclipse.ecf.provider.bittorrent.ui/src/org/eclipse/ecf/internal/provider/bittorrent/ui/BitTorrentConnectWizardPage.java
index 681085994..6db94edbc 100644
--- a/providers/bundles/org.eclipse.ecf.provider.bittorrent.ui/src/org/eclipse/ecf/internal/provider/bittorrent/ui/BitTorrentConnectWizardPage.java
+++ b/providers/bundles/org.eclipse.ecf.provider.bittorrent.ui/src/org/eclipse/ecf/internal/provider/bittorrent/ui/BitTorrentConnectWizardPage.java
@@ -42,6 +42,7 @@ final class BitTorrentConnectWizardPage extends WizardPage {
super("");
setTitle(Messages.getString("BitTorrentConnectWizardPage.File_Sharing"));
setDescription(Messages.getString("BitTorrentConnectWizardPage.File_Sharing.Description"));
+ setImageDescriptor(Activator.imageDescriptorFromPlugin(Activator.PLUGIN_ID, "icons/filewiz_download.png"));
setPageComplete(false);
}

Back to the top