~ubuntu-branches/ubuntu/trusty/jsch/trusty-proposed

« back to all changes in this revision

Viewing changes to src/com/jcraft/jsch/RequestWindowChange.java

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2006-12-04 03:11:50 UTC
  • mfrom: (2.1.4 edgy)
  • Revision ID: james.westby@ubuntu.com-20061204031150-kg8n1b0utae11phk
Tags: 0.1.28-2
* Upload to unstable.
* Fix typo in copyright. Closes: #391988.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* -*-mode:java; c-basic-offset:2; -*- */
 
1
/* -*-mode:java; c-basic-offset:2; indent-tabs-mode:nil -*- */
2
2
/*
3
 
Copyright (c) 2002,2003,2004 ymnk, JCraft,Inc. All rights reserved.
 
3
Copyright (c) 2002,2003,2004,2005,2006 ymnk, JCraft,Inc. All rights reserved.
4
4
 
5
5
Redistribution and use in source and binary forms, with or without
6
6
modification, are permitted provided that the following conditions are met:
34
34
  int height_rows=24;
35
35
  int width_pixels=640;
36
36
  int height_pixels=480;
37
 
  void setSize(int row, int col, int wp, int hp){
38
 
    this.width_columns=row; 
39
 
    this.height_rows=col; 
 
37
  void setSize(int col, int row, int wp, int hp){
 
38
    this.width_columns=col; 
 
39
    this.height_rows=row; 
40
40
    this.width_pixels=wp;
41
41
    this.height_pixels=hp;
42
42
  }