~cszikszoy/do-plugins/pastebin

« back to all changes in this revision

Viewing changes to Twitter/src/Configuration.cs

  • Committer: Alex Launi
  • Date: 2008-06-06 20:54:02 UTC
  • mfrom: (120.4.6 do-plugins-trunk)
  • Revision ID: alex@eriktorvaldsonn-20080606205402-qqlb3aa8r9w0t6ku
Merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Configuration.cs
3
 
 * 
4
 
 * GNOME Do is the legal property of its developers, whose names are too numerous
5
 
 * to list here.  Please refer to the COPYRIGHT file distributed with this
6
 
 * source distribution.
7
 
 * 
8
 
 * This program is free software: you can redistribute it and/or modify
9
 
 * it under the terms of the GNU General Public License as published by
10
 
 * the Free Software Foundation, either version 3 of the License, or
11
 
 * (at your option) any later version.
12
 
 * 
13
 
 * This program is distributed in the hope that it will be useful,
14
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
 
 * GNU General Public License for more details.
17
 
 * 
18
 
 * You should have received a copy of the GNU General Public License
19
 
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
20
 
 */
 
1
// Configuration.cs
 
2
// 
 
3
// GNOME Do is the legal property of its developers, whose names are too
 
4
// numerous to list here.  Please refer to the COPYRIGHT file distributed with
 
5
// this source distribution.
 
6
// 
 
7
// This program is free software: you can redistribute it and/or modify it under
 
8
// the terms of the GNU General Public License as published by the Free Software
 
9
// Foundation, either version 3 of the License, or (at your option) any later
 
10
// version.
 
11
// 
 
12
// This program is distributed in the hope that it will be useful, but WITHOUT
 
13
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 
14
// FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
 
15
// details.
 
16
// 
 
17
// You should have received a copy of the GNU General Public License along with
 
18
// this program.  If not, see <http://www.gnu.org/licenses/>.
 
19
//
21
20
 
22
21
using System;
23
22
 
31
30
                public Configuration () : 
32
31
                        base ("Twitter")
33
32
                {
34
 
                        Build ();
35
33
                        GetAccountButton.Uri = "https://twitter.com/signup";                    
36
34
                }
37
35