From 30cf332e463fd6393c49a8368c20a38fa4c6baa9 Mon Sep 17 00:00:00 2001 From: "Erik C. Thauvin" Date: Wed, 9 Mar 2005 19:53:28 +0000 Subject: [PATCH] Fixed a problem with sending SMS on T616. --- GooglME-1.iws | 90 +++++++++++------------ GooglME-2.jad | 2 +- GooglME.jad | 2 +- googlme.wml | 2 +- src/net/thauvin/j2me/googlme/GooglME.java | 6 +- 5 files changed, 52 insertions(+), 50 deletions(-) diff --git a/GooglME-1.iws b/GooglME-1.iws index 0f8934c..3550995 100755 --- a/GooglME-1.iws +++ b/GooglME-1.iws @@ -115,7 +115,7 @@ - + @@ -124,7 +124,7 @@ - + @@ -133,28 +133,28 @@ - + - + - + - + @@ -163,7 +163,7 @@ - + @@ -184,20 +184,20 @@ - - - + + + - - - - + + + + @@ -238,6 +238,20 @@ @@ -330,19 +330,19 @@ - + - - + + - + @@ -446,7 +446,7 @@ - + @@ -455,7 +455,7 @@ - + @@ -464,28 +464,28 @@ - + - + - + - + @@ -494,7 +494,7 @@ - + diff --git a/GooglME-2.jad b/GooglME-2.jad index 2c045e8..8bb4723 100755 --- a/GooglME-2.jad +++ b/GooglME-2.jad @@ -1,7 +1,7 @@ MIDlet-1: GooglME,/googlme.png,net.thauvin.j2me.googlme.GooglME MIDlet-Jar-URL: GooglME-2.jar MIDlet-Icon: /googlme.png -MIDlet-Version: 0.4.0 +MIDlet-Version: 0.4.1 MIDlet-Description: GooglME MIDlet-Name: GooglME MIDlet-Vendor: Erik C. Thauvin diff --git a/GooglME.jad b/GooglME.jad index add4690..0cab898 100755 --- a/GooglME.jad +++ b/GooglME.jad @@ -1,7 +1,7 @@ MIDlet-1: GooglME,/googlme.png,net.thauvin.j2me.googlme.GooglME MIDlet-Jar-URL: GooglME.jar MIDlet-Icon: /googlme.png -MIDlet-Version: 0.4.0 +MIDlet-Version: 0.4.1 MIDlet-Description: GooglME MIDlet-Name: GooglME MIDlet-Vendor: Erik C. Thauvin diff --git a/googlme.wml b/googlme.wml index f6d278d..d0277aa 100755 --- a/googlme.wml +++ b/googlme.wml @@ -8,7 +8,7 @@

- GoogleME 0.4 (~13Kb)
+ GoogleME 0.4.1 (~13Kb)

MIDP 2.0
diff --git a/src/net/thauvin/j2me/googlme/GooglME.java b/src/net/thauvin/j2me/googlme/GooglME.java index e55dba9..cbb0875 100755 --- a/src/net/thauvin/j2me/googlme/GooglME.java +++ b/src/net/thauvin/j2me/googlme/GooglME.java @@ -112,7 +112,7 @@ public class GooglME extends MIDlet implements CommandListener, Runnable /** * The application version. */ - protected static final String APP_VERSION = "0.4"; + protected static final String APP_VERSION = "0.4.1"; /** * The Back command. @@ -737,9 +737,11 @@ public class GooglME extends MIDlet implements CommandListener, Runnable text = _query; } + // NOTE: Must be preformed before sending the SMS on the T616. + addHistory(text); + msg.setPayloadText(text); conn.send(msg); - addHistory(text); //alert("SMS Sent", "The text message was sent.", _mainScreen, false); }