~benoit.garret/tomdroid/ui-fixes

« back to all changes in this revision

Viewing changes to src/org/tomdroid/ui/LoadWebNoteDialog.java

  • Committer: Olivier Bilodeau
  • Date: 2009-04-06 22:27:27 UTC
  • Revision ID: olivier@bottomlesspit.org-20090406222727-rxvku1xbezwezwys
Removed calls to log.x() that were not useful.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
import android.app.Activity;
28
28
import android.content.Intent;
29
29
import android.os.Bundle;
30
 
import android.util.Log;
31
30
import android.view.View;
32
31
import android.view.View.OnClickListener;
33
32
import android.widget.Button;
60
59
                
61
60
            public void onClick(View v)
62
61
            {
63
 
                Log.d(LoadWebNoteDialog.this.toString(), "info: Button Ok clicked. URL requested: "+txtURL.getText().toString());
64
62
                okClicked(txtURL.getText().toString());
65
63
            }
66
64
        });
70
68
                
71
69
            public void onClick(View v)
72
70
            {
73
 
                Log.d(LoadWebNoteDialog.this.toString(), "info: Button cancel clicked.");
74
71
                cancelClicked();
75
72
            }
76
73
        });